showNextPageAnimation property

bool? showNextPageAnimation

If it's set to true, the animation asking for processing the next page will be displayed.

Default: true.

Implementation

bool? get showNextPageAnimation => _showNextPageAnimation;
void showNextPageAnimation=(bool? val)

Implementation

set showNextPageAnimation(bool? val) {
  _showNextPageAnimation = val;
  _setCustomization({"showNextPageAnimation": val}, this);
}