fromGraphQLListCurrencyNullableToDartListCurrencyNullable function
Implementation
List<Currency?> fromGraphQLListCurrencyNullableToDartListCurrencyNullable(
List<Object?> v,
) => v
.map((e) => fromGraphQLCurrencyNullableToDartCurrencyNullable(e as String?))
.toList();