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