fromGraphQLListInvoiceFileNullableToDartListInvoiceFileNullable function

List<InvoiceFile?> fromGraphQLListInvoiceFileNullableToDartListInvoiceFileNullable(
  1. List<Object?> v
)

Implementation

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