forward method

TickerFuture forward(
  1. double to, [
  2. Curve? curve
])

Implementation

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