isCompleted method
Whether tour has been finished before.
TourController.start consults this and does nothing when it returns
true, unless it was called with force: true.
Implementation
@override
Future<bool> isCompleted(String tour) async {
calls.add('isCompleted:$tour');
return completed.contains(tour);
}