showNextPageAnimation property

bool? get 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;
set showNextPageAnimation (bool? val)

Implementation

set showNextPageAnimation(bool? val) {
  _showNextPageAnimation = val;
  _set({"showNextPageAnimation": val});
}