This commit is contained in:
efrilm
2025-10-31 14:33:02 +07:00
parent bf43c398d2
commit 8d9e622121
24 changed files with 3054 additions and 79 deletions
+12
View File
@@ -0,0 +1,12 @@
enum VoidType { all, item, unknown }
extension VoidTypeX on VoidType {
String toStringType() => switch (this) {
VoidType.all => 'ALL',
VoidType.item => 'ITEM',
VoidType.unknown => 'unknown',
};
bool get isAll => this == VoidType.all;
bool get isItem => this == VoidType.item;
}