CoachMaker constructor

CoachMaker(
  1. BuildContext context, {
  2. required List<CoachModel> initialList,
  3. Duration firstDelay = const Duration(milliseconds: 1),
  4. Duration duration = const Duration(seconds: 1),
  5. dynamic skip()?,
  6. CoachMakerControl nextStep = CoachMakerControl.next,
  7. CoachButtonOptions? buttonOptions,
  8. Widget customNavigator(
    1. Function? onSkip,
    2. Function onNext
    )?,
})

constructor

Implementation

CoachMaker(
  this.context, {
  required this.initialList,
  this.firstDelay = const Duration(milliseconds: 1),
  this.duration = const Duration(seconds: 1),
  this.skip,
  this.nextStep = CoachMakerControl.next,
  this.buttonOptions,
  this.customNavigator,
});