fromGraphQLListNullableInvoiceFileToDartListNullableInvoiceFile function
Implementation
List<InvoiceFile>?
fromGraphQLListNullableInvoiceFileToDartListNullableInvoiceFile(
List<Object?>? v,
) => v
?.map((e) => fromGraphQLInvoiceFileToDartInvoiceFile(e as String))
.toList();