fromGraphQLListCountryCodeNullableToDartListCountryCodeNullable function

List<CountryCode?> fromGraphQLListCountryCodeNullableToDartListCountryCodeNullable(
  1. List<Object?> v
)

Implementation

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