Files
fcs/lib/pages/widgets/local_popupmenu.dart
phyothandar 079c9a135d null safety
2021-09-10 14:25:37 +06:30

14 lines
256 B
Dart

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