fromGraphQLListNullableCountryCodeNullableToDartListNullableCountryCodeNullable function
Implementation
List<CountryCode?>?
fromGraphQLListNullableCountryCodeNullableToDartListNullableCountryCodeNullable(
List<Object?>? v,
) => v
?.map(
(e) =>
fromGraphQLCountryCodeNullableToDartCountryCodeNullable(e as String?),
)
.toList();