HintTour constructor
const
HintTour({})
Implementation
const HintTour({
required this.id,
required this.steps,
this.stepTimeout = const Duration(seconds: 3),
this.disableBackButton = false,
}) : assert(id != '', 'HintTour.id must not be empty'),
assert(steps.length > 0, 'HintTour.steps must not be empty');