onHintSkipped method

  1. @override
void onHintSkipped(
  1. String tourId,
  2. int stepIndex,
  3. String targetId,
  4. HintSkipReason reason,
  5. String detail,
)
override

Step stepIndex of tour tourId for target targetId was not shown for reason; detail carries reason context (timeout, message).

Implementation

@override
void onHintSkipped(
  String tourId,
  int stepIndex,
  String targetId,
  HintSkipReason reason,
  String detail,
) {
  debugPrint(formatHintSkipped(tourId, stepIndex, targetId, reason, detail));
}