showBytes method
Implementation
Future<Widget> showBytes(Uint8List bytes, PdfPageFormat pageFormat) async {
return PdfPreview(
pdfPreviewPageDecoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(12),
),
build: (PdfPageFormat format) async => bytes,
initialPageFormat: pageFormat,
canChangePageFormat: false,
);
}