handleMouseEnter method

void handleMouseEnter()

Implementation

void handleMouseEnter() {
  if (_state.isDisabled) return;
  if (_state.isHovered) return;
  _state = _state.copyWith(isHovered: true);
  notifyListeners();
}