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