fromDartListNullableInvoiceFileNullableToGraphQLListNullableInvoiceFileNullable function

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

Implementation

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