getByValue static method

ExcludedAreaSeverity getByValue(
  1. int value
)

Implementation

static ExcludedAreaSeverity getByValue(int value) {
  return ExcludedAreaSeverity.values.firstWhere((x) => x.rawValue == value);
}