9 lines
185 B
Dart
9 lines
185 B
Dart
|
|
class LocalPopupMenu {
|
||
|
|
int id;
|
||
|
|
String textKey;
|
||
|
|
bool selected;
|
||
|
|
bool highlight;
|
||
|
|
LocalPopupMenu(
|
||
|
|
{this.id, this.textKey, this.selected = false, this.highlight = false});
|
||
|
|
}
|