reset method
Forgets that tour was finished, so it can run again.
Useful for a "replay the tour" button and for tests.
Implementation
@override
Future<void> reset(String tour) async {
calls.add('reset:$tour');
completed.remove(tour);
indices.remove(tour);
}