pdfPagesLimit property
Maximum number of pages to be processed in a PDF document. If set, only the specified number of pages will be analyzed.
Implementation
int? get pdfPagesLimit => _pdfPagesLimit;
Implementation
set pdfPagesLimit(int? val) {
_pdfPagesLimit = val;
_set({"pdfPagesLimit": val});
}