fromDartListCountryCodeToGraphQLListCountryCode function

List<String> fromDartListCountryCodeToGraphQLListCountryCode(
  1. List<CountryCode> v
)

Implementation

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