Massive refactoring: UIBuilder, Vew, HACArd, Badge

This commit is contained in:
estevez
2018-09-28 10:15:25 +03:00
parent 375ae36884
commit 098a556279
7 changed files with 170 additions and 97 deletions

9
lib/badge_class.dart Normal file
View File

@ -0,0 +1,9 @@
part of 'main.dart';
class Badge {
String _entityId;
Badge(String groupId) {
_entityId = groupId;
}
}