fromString static method

ProhibitionSeverity fromString(
  1. String value
)

Implementation

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