startIfNotCompleted method
Start the tour only if it hasn't been completed.
Implementation
Future<bool> startIfNotCompleted(BuildContext context) async {
return await _service.showIfNotCompleted(
onboardingId: tourId,
showOnboarding: () => start(context),
);
}