fromString static method
Implementation
static ProhibitionSeverity fromString(String value) {
return ProhibitionSeverity.values.firstWhere(
(e) => e.name == value,
orElse: () => ProhibitionSeverity.unknown,
);
}
static ProhibitionSeverity fromString(String value) {
return ProhibitionSeverity.values.firstWhere(
(e) => e.name == value,
orElse: () => ProhibitionSeverity.unknown,
);
}