Files
fcs/lib/pages/widgets/local_popupmenu.dart
2024-01-31 11:16:05 +06:30

16 lines
289 B
Dart

class LocalPopupMenu {
int id;
String? textKey;
String? text;
bool selected;
bool highlight;
bool enabled;
LocalPopupMenu(
{required this.id,
this.textKey,
this.text,
this.selected = false,
this.highlight = false,
this.enabled = true});
}