HintSkipReason enum

Reasons why a tour step was not shown.

A single typed enum for diagnostics instead of raw strings: testable, and an event bus can reuse the same reason values without changing the contract.

Inheritance
Available extensions

Values

targetNotRendered → const HintSkipReason

The target was not registered by the time the step was reached.

timeout → const HintSkipReason

Wait-for-target: the target did not appear within the configured timeout.

unknownTarget → const HintSkipReason

targetId is unknown to the registry and no close candidates exist (likely a typo).

targetUnmountedDuringStep → const HintSkipReason

The target was mounted but vanished during an active step.

userSkipped → const HintSkipReason

The user skipped the tour.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
label String
Kebab-case reason name for one-line diagnostics and test mapping.
no setter
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<HintSkipReason>
A constant List of the values in this enum, in order of their declaration.