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