finishGuide method

void finishGuide()

Completes the onboarding process normally.

This is called automatically when reaching the last step, but can also be called manually to end onboarding early.

Implementation

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