created tag rooms

This commit is contained in:
Vishal
2022-12-05 10:12:16 +05:30
parent 2ad284a6b2
commit 49d8847105
5 changed files with 126 additions and 37 deletions

View File

@@ -1,6 +1,24 @@
import 'dart:io';
import 'package:qr/qr.dart';
enum enumRoomType { kind4, kind40, kind140, RoomLocationTag, RoomTTag}
String getPostKindFrom(enumRoomType eType) {
switch (eType) {
case enumRoomType.kind4:
return "4";
case enumRoomType.kind40:
return "42";
case enumRoomType.kind140:
return "142";
case enumRoomType.RoomLocationTag:
return "1";
case enumRoomType.RoomTTag:
return "1";
}
}
class HistogramEntry {
String str;
int count;