valueOff property

PositionComponent get valueOff

Gets the visual component for the disabled state.

Implementation

PositionComponent get valueOff => _valueOff;
set valueOff (PositionComponent component)

Sets the visual component for the disabled state and rebuilds the visual state.

Implementation

set valueOff(PositionComponent component) {
  _valueOff = component;
  _rebuild();
}