start method

Future<void> start(
  1. BuildContext context
)

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