StepperPageRF constructor

StepperPageRF({
  1. List<String>? titles,
  2. List<Widget>? pages,
  3. Function? onSubmit,
  4. Function? onNext,
  5. Color? buttonColor,
  6. Color? tabActiveColor,
  7. Color? buttonTextColor,
  8. Icon? buttonNextIcon,
  9. Icon? buttonSubmitIcon,
  10. Color? tabInActiveColor,
  11. bool? avatarVisible = true,
})

Implementation

StepperPageRF({
  this.titles,
  this.pages,
  this.onSubmit,
  this.onNext,
  this.buttonColor,
  this.tabActiveColor,
  this.buttonTextColor,
  this.buttonNextIcon,
  this.buttonSubmitIcon,
  this.tabInActiveColor,
  this.avatarVisible = true,
}) : assert(titles!.length == pages!.length,
          "Stepper title and forms count not matched");