animateTo method
Animates to the specified value.
Implementation
void animateTo(
double value,
Duration duration, [
Curve curve = Curves.linear,
]) {
_controller.push(AnimationRequest(value, duration, curve), false);
}
Animates to the specified value.
void animateTo(
double value,
Duration duration, [
Curve curve = Curves.linear,
]) {
_controller.push(AnimationRequest(value, duration, curve), false);
}