PdfImagePage.fromPath constructor
PdfImagePage.fromPath(
- String filePath,
- PagePosition positionRect
Implementation
factory PdfImagePage.fromPath(String filePath, PagePosition positionRect) {
return PdfImagePage(
imageUri: Uri.file(filePath),
position: positionRect,
zOrder: PageZOrder.foreground);
}