Files
nowser/lib/const/base_consts.dart

15 lines
184 B
Dart

class OpenStatus {
static const OPEN = 1;
static const CLOSE = -1;
}
class EnumObj {
final dynamic value;
final String name;
EnumObj(
this.value,
this.name,
);
}