2020-10-12 03:34:05 +06:30
|
|
|
class LocalPopupMenu {
|
|
|
|
|
int id;
|
2021-09-10 14:25:37 +06:30
|
|
|
String? textKey;
|
2020-10-12 03:34:05 +06:30
|
|
|
bool selected;
|
|
|
|
|
bool highlight;
|
2020-10-19 05:13:49 +06:30
|
|
|
bool enabled;
|
2020-10-12 03:34:05 +06:30
|
|
|
LocalPopupMenu(
|
2021-09-10 14:25:37 +06:30
|
|
|
{required this.id,
|
2020-10-19 05:13:49 +06:30
|
|
|
this.textKey,
|
|
|
|
|
this.selected = false,
|
|
|
|
|
this.highlight = false,
|
|
|
|
|
this.enabled = true});
|
2020-10-12 03:34:05 +06:30
|
|
|
}
|