fromDartListNullableInvoiceFileToGraphQLListNullableInvoiceFile function

List<String>? fromDartListNullableInvoiceFileToGraphQLListNullableInvoiceFile(
  1. List<InvoiceFile>? v
)

Implementation

List<String>? fromDartListNullableInvoiceFileToGraphQLListNullableInvoiceFile(
  List<InvoiceFile>? v,
) => v?.map((e) => fromDartInvoiceFileToGraphQLInvoiceFile(e)).toList();