value property

num get value
override

The current value stored in this notifier.

When the value is replaced with something that is not equal to the old value as evaluated by the equality operator ==, this class notifies its listeners.

Implementation

num get value => super.value;
set value (num newValue)
override

Implementation

set value(num newValue) {
  super.value = newValue;
}