fromValue static method

Country fromValue(
  1. String value
)

Implementation

static Country fromValue(String value) {
  return Country.values.firstWhere(
    (country) => country.value == value,
    orElse: () =>
        throw ArgumentError('No enum value with that value: $value'),
  );
}