static Future<PDFDoc> fromPath(String path, {String password = ""}) async { final doc = PDFDoc._(path: path, password: password); await doc._init(); return doc; }