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