Files
fcs/lib/pages/widgets/local_popupmenu.dart

9 lines
185 B
Dart
Raw Normal View History

2020-10-12 03:34:05 +06:30
class LocalPopupMenu {
int id;
String textKey;
bool selected;
bool highlight;
LocalPopupMenu(
{this.id, this.textKey, this.selected = false, this.highlight = false});
}