focusState property

This getter is returns defined focus state with this controller.

Implementation

TouchRippleBackgroundState? get focusState => _focusState;
void focusState=(TouchRippleBackgroundState? newState)

This setter is defines focus state of this controller.

Implementation

set focusState(TouchRippleBackgroundState? newState) {
  _focusState = newState?..addListener(notifyListeners);
}