fromDartListNullableCountryCodeToGraphQLListNullableCountryCode function

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

Implementation

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