page method

PdfPage? page(
  1. int page
)

This returns a specific page. It's used mainly when using a Serialized template file.

Implementation

PdfPage? page(int page) {
  return pdfPageList.pages[page];
}