reverse method

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

Starts running this animation in reverse (towards the beginning).

  • 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.reverse(from: 1.0);

Implementation

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