fromCode static method
Implementation
static CountryCodeEnum fromCode(String input) {
return CountryCodeEnum.values.firstWhere(
(e) => e.code.toUpperCase() == input.toUpperCase(),
orElse: () => throw ArgumentError('Invalid country code: $input'),
);
}