value property

  1. @protected
  2. @override
BuiltList<ParagraphState> 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

@protected
@override
BuiltList<ParagraphState> get value => super.value;
void value=(BuiltList<ParagraphState> newValue)
inherited

Implementation

set value(T newValue) {
  if (_value == newValue) {
    return;
  }
  _value = newValue;
  notifyListeners();
}