CPDFDestination constructor

const CPDFDestination({
  1. required int pageIndex,
  2. double zoom = 0.0,
  3. double positionX = 0.0,
  4. double positionY = 0.0,
})

Implementation

const CPDFDestination({
  required this.pageIndex,
  this.zoom = 0.0,
  this.positionX = 0.0,
  this.positionY = 0.0,
});