add packages, receiving & processing

This commit is contained in:
Sai Naw Wun
2020-10-12 03:34:05 +06:30
parent 32e6be2abd
commit b13dc69161
36 changed files with 1110 additions and 668 deletions

View File

@@ -0,0 +1,8 @@
class LocalPopupMenu {
int id;
String textKey;
bool selected;
bool highlight;
LocalPopupMenu(
{this.id, this.textKey, this.selected = false, this.highlight = false});
}