PdfPageView constructor

const PdfPageView({
  1. Key? key,
  2. required PdfPage page,
  3. double? width,
  4. double? height,
  5. BoxDecoration? decoration,
})

Implementation

const PdfPageView({
  super.key,
  required this.page,
  this.width,
  this.height,
  this.decoration,
});