PDFPage constructor

PDFPage(
  1. String? imgPath,
  2. int num, {
  3. dynamic onZoomChanged(
    1. double
    )?,
  4. int? zoomSteps = 3,
  5. double? minScale = 1.0,
  6. double? maxScale = 5.0,
  7. double? panLimit = 1.0,
})

Implementation

PDFPage(
  this.imgPath,
  this.num, {
  this.onZoomChanged,
  this.zoomSteps = 3,
  this.minScale = 1.0,
  this.maxScale = 5.0,
  this.panLimit = 1.0,
});