hoverState property

This getter is returns defined hover state with this controller.

Implementation

TouchRippleBackgroundState? get hoverState => _hoverState;
void hoverState=(TouchRippleBackgroundState? newState)

This setter is defines hover state of this controller.

Implementation

set hoverState(TouchRippleBackgroundState? newState) {
  _hoverState = newState?..addListener(notifyListeners);
}