fromGraphQLListCountryCodeToDartListCountryCode function

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

Implementation

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