value property

  1. @override
List<E> get value
override

The current value of the object. When the value changes, the callbacks registered with addListener will be invoked.

Implementation

@override
List<E> get value => _value;
set value (List<E> newValue)

Implementation

set value(List<E> newValue) {
  if (const DeepCollectionEquality().equals(value, newValue)) return;
  _value = newValue;
  notifyListeners();
}