pages property

List<PDFPage> pages

Gets the pages of this document. The pages indexes start at 0, but the first page has number 1. Therefore, if you need to access the 5th page, you will do: var page = doc.pages4 print(page.number) -> 5

Implementation

List<PDFPage> get pages => _pages;