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