open method

void open(
  1. int index
)

Implementation

void open(int index) {
  var hole = _getHole(index);
  if (hole != null) {
    _tourState?.open(hole);
    _currentIndex = _stepIndexList.indexOf(index);
  }
  notifyListeners();
}