$ property

T get $

The value held by this state.

Implementation

T get $ => _value;
set $ (T newValue)

Update the value and rebuild the dependent widgets if it changed.

Implementation

set $(T newValue) {
  setState(() {
    _value = newValue;
  });
}