CoachStep constructor
const
CoachStep({})
Creates a new showcase coach step.
The targetKey must be attached to a widget in the widget tree.
The title and description are displayed in the tooltip card.
Use shouldShow for dynamic visibility logic, or showIf for simple
boolean conditions. If both are provided, shouldShow takes precedence.
Implementation
const CoachStep({
required this.targetKey,
required this.title,
required this.description,
this.shouldShow,
this.showIf = true,
});