pdf_worker 1.0.1
pdf_worker: ^1.0.1 copied to clipboard
A new Flutter PDF plugin project. you can lock, unlock PDF file.
pdf_worker #
A new Flutter plugin project. you can lock, unlock PDF file.
Getting Started #
install #
···
pdf_worker: ^1.0.0
usage #
final pdfWorker = PdfWorker();
try {
// path need the device pdf file path
final isEncrypted = await pdfWorker.isEncrypted(filePath: 'test.pdf');
await pdfWorker.lock(filePath: 'test.pdf', password: '123456');
final locked = await pdfWorker.unlock(filePath: 'test.pdf', password: '123456');
} catch (e) {
debugPrint(e.toString());
}
This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.###
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.