fromGraphQLListCurrencyToDartListCurrency function

List<Currency> fromGraphQLListCurrencyToDartListCurrency(
  1. List<Object?> v
)

Implementation

List<Currency> fromGraphQLListCurrencyToDartListCurrency(List<Object?> v) =>
    v.map((e) => fromGraphQLCurrencyToDartCurrency(e as String)).toList();