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