fromGraphQLListNullableInvoiceFileToDartListNullableInvoiceFile function

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

Implementation

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