isAnimating property
bool
get
isAnimating
This read-only property is true when the Animation is currently running.
This value cannot be set, but Animation can be stopped by calling #stop.
Implementation
_i2.bool get isAnimating => _i4.getProperty(
this,
'isAnimating',
);
set
isAnimating
(bool value)
Implementation
set isAnimating(_i2.bool value) {
_i4.setProperty(
this,
'isAnimating',
value,
);
}