value property

  1. @protected
T? value

Implementation

@protected
T? get value {
  notifyChildrens();
  return _value;
}
  1. @protected
void value=(T? newValue)

Implementation

@protected
set value(T? newValue) {
  if (_value == newValue) return;
  _value = newValue;
  refresh();
}