Files
fcs/lib/pages/widgets/local_popupmenu.dart
2020-10-19 05:13:49 +06:30

14 lines
246 B
Dart

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