value property

  1. @override
T value
override

The most recent value, without waiting for the debounce timer to expire.

Implementation

@override
T get value => super.value;
void value=(T val)
inherited

Implementation

set value(T val) {
  if (!canceled && (!checkEquality || _value != val)) {
    _value = val;
    // Delaying notify() allows the Future and Stream to update correctly.
    Future.delayed(Duration.zero, () => notify(val));
  }
}