fromDartListNullableInvoiceFileNullableToGraphQLListNullableInvoiceFileNullable function
- List<
InvoiceFile?> ? v
Implementation
List<String?>?
fromDartListNullableInvoiceFileNullableToGraphQLListNullableInvoiceFileNullable(
List<InvoiceFile?>? v,
) => v
?.map((e) => fromDartInvoiceFileNullableToGraphQLInvoiceFileNullable(e))
.toList();