forward method
Implementation
TickerFuture forward(double to, [Curve? curve]) {
_from = value;
_to = to;
_curve = curve ?? Curves.linear;
return _controller.forward(from: 0);
}
TickerFuture forward(double to, [Curve? curve]) {
_from = value;
_to = to;
_curve = curve ?? Curves.linear;
return _controller.forward(from: 0);
}