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
@@ -36,4 +36,15 @@ extension StringX on String {
return TableStatusType.unknown;
}
}
VoidType toVoidType() {
switch (this) {
case 'all':
return VoidType.all;
case 'item':
return VoidType.item;
default:
return VoidType.unknown;
}
}
}