HintTour constructor

const HintTour({
  1. required String id,
  2. required List<HintStep> steps,
  3. Duration stepTimeout = const Duration(seconds: 3),
  4. bool disableBackButton = false,
})

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');