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