startIfNotCompleted method

Future<bool> startIfNotCompleted(
  1. BuildContext context
)

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