value property

  1. @override
double value
override

The current value

Using this in a FastBuilder will cause a rebuild when the value changes

Implementation

@override
double get value => super.value as double;
void value=(num value)
inherited

Set the current value

Will notify listeners if the value has changed

Implementation

set value(T value) {
  if (_value != value) {
    _value = value;
    notify();
  }
}