PdfPageList constructor

PdfPageList(
  1. PdfDocument pdfDocument, {
  2. int objgen = 0,
  3. int? objser,
})

This constructs a PdfPageList object.

Implementation

PdfPageList(
  super.pdfDocument, {
  super.objgen,
  super.objser,
}) : super(
        params: PdfDict.values({
          '/Type': const PdfName('/Pages'),
        }),
      );