reversible property
bool
get
reversible
Gets or sets whether this Animation will repeat its animation in reverse at the end of the duration. Default false.
A reversible Animation, if stopped early, will end at its original state. Setting this to true doubles the effective #duration of the Animation.
This property should not be set on the AnimationManager#defaultAnimation
Implementation
_i2.bool get reversible => _i4.getProperty(
this,
'reversible',
);
set
reversible
(bool value)
Implementation
set reversible(_i2.bool value) {
_i4.setProperty(
this,
'reversible',
value,
);
}