fromDartListNullableCountryCodeToGraphQLListNullableCountryCode function
- List<
CountryCode> ? v
Implementation
List<String>? fromDartListNullableCountryCodeToGraphQLListNullableCountryCode(
List<CountryCode>? v,
) => v?.map((e) => fromDartCountryCodeToGraphQLCountryCode(e)).toList();