fromGraphQLListNullableCountryCodeNullableToDartListNullableCountryCodeNullable function

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

Implementation

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