forward method

TickerFuture forward({
  1. double? from,
})

Starts running this animation forwards (towards the end).

  • from: Optional starting value. If omitted, continues from current value.

Requires:

  • Controller must be activated by a Coral resource topology before driving motion.

Ensures:

Throws:

Example:

controller.forward(from: 0.0);

Implementation

TickerFuture forward({double? from}) => _delegate.forward(from: from);