Open a PDF from the given path.
path
@override Future<int?> openPdf({ required String path, }) async { final pdf = await methodChannel.invokeMethod<int>('openPDF', { 'path': path, }); return pdf; }