reset method

void reset()

Implementation

void reset() {
  _pageController.jumpToPage(0);
  if (mounted) {
    setState(() {
      _currentIndex = 0;
      _currentStepIndicator = 0;
      _circularProgressWidget = _buildCircularIndicator();
    });
  }
}