SubZeroFeatureTourController constructor

SubZeroFeatureTourController({
  1. required String tourId,
  2. required List<SubZeroCoachMarkStep> steps,
  3. VoidCallback? onComplete,
  4. VoidCallback? onSkip,
})

Implementation

SubZeroFeatureTourController({
  required this.tourId,
  required this.steps,
  this.onComplete,
  this.onSkip,
});