getByValue static method

Scenario? getByValue(
  1. String? i
)

Implementation

static Scenario? getByValue(String? i) {
  if (i == null || i == "") return null;
  return Scenario.values.firstWhere((x) => x.value == i);
}