fromJson static method
Implementation
static RTSchemaUIType fromJson(String? value) {
return RTSchemaUIType.values.firstWhere(
(e) => e.value == value,
orElse: () => RTSchemaUIType.none,
);
}
static RTSchemaUIType fromJson(String? value) {
return RTSchemaUIType.values.firstWhere(
(e) => e.value == value,
orElse: () => RTSchemaUIType.none,
);
}