StepperStep constructor

StepperStep({
  1. required Widget title,
  2. required Widget view,
  3. StepStatus status = StepStatus.none,
  4. Widget? failedView,
  5. Widget? leading,
  6. Widget? trailing,
  7. bool visible = true,
  8. bool isExpanded = true,
})

Implementation

StepperStep({
  required this.title,
  required this.view,
  this.status = StepStatus.none,
  this.failedView,
  this.leading,
  this.trailing,
  this.visible = true,
  this.isExpanded = true,
});