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