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