PageAddedArgs constructor

PageAddedArgs([
  1. PdfPage? page
])

Initializes a new instance of the PageAddedArgs class.

page - represending the page which is added in the document.

Implementation

PageAddedArgs([PdfPage? page]) {
  if (page != null) {
    this.page = page;
  }
}