focusState property

TouchRippleBackgroundState? get focusState

This getter is returns defined focus state with this controller.

Implementation

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

This setter is defines focus state of this controller.

Implementation

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