isCompleted method

  1. @override
Future<bool> isCompleted(
  1. String tour
)
override

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);
}