fromGraphQLListInvoiceFileToDartListInvoiceFile function

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

Implementation

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