jumpTo method

void jumpTo(
  1. T target
)

Immediately set a new value.

Implementation

void jumpTo(T target) {
  _ticker!.stop(canceled: true);
  _from = _value = _target = target;
  notifyListeners();
}