fromDartListCurrencyToGraphQLListCurrency function

List<String> fromDartListCurrencyToGraphQLListCurrency(
  1. List<Currency> v
)

Implementation

List<String> fromDartListCurrencyToGraphQLListCurrency(List<Currency> v) =>
    v.map((e) => fromDartCurrencyToGraphQLCurrency(e)).toList();