hasCompleted method

Future<bool> hasCompleted()

Check if the tour has been completed.

Implementation

Future<bool> hasCompleted() async {
  return await _service.hasCompleted(tourId);
}