isAnimating property

bool get isAnimating

This read-only property is true when the animation manager is currently animating any animation, including the #defaultAnimation.

This value cannot be set, but animation can be stopped by calling #stopAnimation, and it can be prevented by setting #isEnabled.

Implementation

_i2.bool get isAnimating => _i4.getProperty(
      this,
      'isAnimating',
    );
set isAnimating (bool value)

Implementation

set isAnimating(_i2.bool value) {
  _i4.setProperty(
    this,
    'isAnimating',
    value,
  );
}