PdfPreview constructor

const PdfPreview({
  1. Key? key,
  2. int pageNumber = 0,
  3. required Uri url,
  4. Color backgroundColor = const Color.from(alpha: 1, red: 1, green: 1, blue: 1),
  5. required BoxFit fit,
})

Implementation

const PdfPreview({
  super.key,
  this.pageNumber = 0,
  required this.url,
  this.backgroundColor = const Color.from(alpha: 1, red: 1, green: 1, blue: 1),
  required this.fit,
});