SkipAndNextButtons constructor

const SkipAndNextButtons({
  1. Key? key,
  2. required bool showNext,
  3. required bool showSkip,
  4. Function? onClickNext,
  5. Function? onClickSkip,
  6. required Map theme,
  7. bool? showSubmit,
  8. bool? disabled,
  9. Map? euiTheme,
})

Implementation

const SkipAndNextButtons({
  Key? key,
  required this.showNext,
  required this.showSkip,
  this.onClickNext,
  this.onClickSkip,
  required this.theme,
  this.showSubmit,
  this.disabled,
  this.euiTheme,
}) : super(key: key);