fromDartListCountryCodeNullableToGraphQLListCountryCodeNullable function

List<String?> fromDartListCountryCodeNullableToGraphQLListCountryCodeNullable(
  1. List<CountryCode?> v
)

Implementation

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