fromGraphQLListNullableCountryCodeToDartListNullableCountryCode function

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

Implementation

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