fromGraphQLListNullableInvoiceFileNullableToDartListNullableInvoiceFileNullable function

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

Implementation

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