tryShowHint method

Future<bool> tryShowHint(
  1. HintStep step
)

showHint unless a tour is already running (false when busy).

Implementation

Future<bool> tryShowHint(HintStep step) => tryStart(
      HintTour(id: 'hint:${step.targetId}', steps: [step]),
    );