focused property

bool get focused

Whether the slider currently has keyboard focus.

Implementation

bool get focused => _focused;
set focused (bool v)

Sets the focus state.

Implementation

set focused(bool v) {
  _focused = v;
  _invalidateCache();
}