jumpTo method
void
jumpTo(
- T target
Immediately set a new value.
Implementation
void jumpTo(T target) {
_ticker!.stop(canceled: true);
_from = _value = _target = target;
notifyListeners();
}
Immediately set a new value.
void jumpTo(T target) {
_ticker!.stop(canceled: true);
_from = _value = _target = target;
notifyListeners();
}