fromGraphQLListCountryCodeToDartListCountryCode function
Implementation
List<CountryCode> fromGraphQLListCountryCodeToDartListCountryCode(
List<Object?> v,
) =>
v.map((e) => fromGraphQLCountryCodeToDartCountryCode(e as String)).toList();
List<CountryCode> fromGraphQLListCountryCodeToDartListCountryCode(
List<Object?> v,
) =>
v.map((e) => fromGraphQLCountryCodeToDartCountryCode(e as String)).toList();