fromPath method

Widget fromPath(
  1. String path, {
  2. Key? key,
})

Implementation

Widget fromPath(String path, {Key? key}) {
  return PDFViewWrapper(
    key: key,
    pdf: this,
    path: path,
  );
}