curve property
The curve of the animation.
Implementation
Curve get curve => _animation.curve;
Implementation
set curve(Curve value) {
if (value == _animation.curve) {
return;
}
_animation.curve = value;
}
The curve of the animation.
Curve get curve => _animation.curve;
set curve(Curve value) {
if (value == _animation.curve) {
return;
}
_animation.curve = value;
}