fromDartListNullableCountryCodeNullableToGraphQLListNullableCountryCodeNullable function

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

Implementation

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