14 lines
246 B
Dart
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});
|
|
}
|