skip method

void skip()

Jumps directly to the last step.

Implementation

void skip() {
  if (_stepCount == 0) return;
  _currentIndex = _stepCount - 1;
  notifyListeners();
}