value property
The current value of the animation.
Implementation
@override
double get value => _value;
set
value
(double newValue)
Implementation
set value(double newValue) {
_ticker!.stop(canceled: true);
final bool wasChanged = _value != newValue;
_value = _from = _target = newValue;
if (wasChanged) {
notifyListeners();
_statusUpdate();
}
}