showSkipNextPageButton property

bool? 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;
void showSkipNextPageButton=(bool? val)

Implementation

set showSkipNextPageButton(bool? val) {
  _showSkipNextPageButton = val;
  _set({"showSkipNextPageButton": val});
}