showSkipNextPageButton property
bool?
get
showSkipNextPageButton
If it's set to true
, the button that allows you to skip processing
of the next page of a document will be displayed.
Default: true
.
Implementation
bool? get showSkipNextPageButton => _showSkipNextPageButton;
set
showSkipNextPageButton
(bool? val)
Implementation
set showSkipNextPageButton(bool? val) {
_showSkipNextPageButton = val;
_set({"showSkipNextPageButton": val});
}