PdfNamedDestination constructor

PdfNamedDestination(
  1. String title
)

Initializes a new instance of the PdfNamedDestination class with the title to be displayed.

Implementation

PdfNamedDestination(String title) {
  _helper = PdfNamedDestinationHelper(this);
  this.title = title;
  _initialize();
}