start method
Start the tour regardless of completion status.
Implementation
Future<void> start(BuildContext context) async {
await SubZeroCoachMark.showTour(
context: context,
steps: steps,
onComplete: () async {
await _service.markCompleted(tourId);
onComplete?.call();
},
);
}