isTicking property

bool isTicking

This read-only property is true when the animation manager is in the middle of an animation tick. Animation only operates on GraphObjects during ticks, but code outside of AnimationManager's control may execute between ticks.

isTicking can only be true when #isAnimating is also true.

Implementation

_i2.bool get isTicking => _i4.getProperty(
      this,
      'isTicking',
    );
void isTicking=(bool value)

Implementation

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