skipGuide method

void skipGuide()

Immediately skips the entire onboarding process.

This will hide the overlay and mark onboarding as inactive. Use this when users want to skip the tutorial entirely.

Implementation

void skipGuide() {
  _isActive = false;
  _hideOverlay();
  notifyListeners();
}