mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 10:06:16 +00:00
10 lines
125 B
Dart
10 lines
125 B
Dart
class ListItemModel {
|
|
final String? icon;
|
|
final String? label;
|
|
|
|
ListItemModel({
|
|
this.icon,
|
|
this.label,
|
|
});
|
|
}
|