value property

  1. @override
List<T> get value
override

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

Implementation

@override
List<T> get value {
  return _value;
}
set value (Iterable<T> newValue)

Implementation

set value(Iterable<T> newValue) {
  if (isIterableEquals(_value, newValue)) {
    return;
  }
  _value = List.unmodifiable(newValue);
  notifyListeners();
}