StepperData constructor

StepperData({
  1. String id = "",
  2. required String label,
  3. String? description,
  4. Widget? child,
  5. StepperState state = StepperState.normal,
})

Implementation

StepperData({
  this.id = "",
  required this.label,
  this.description,
  this.child,
  this.state = StepperState.normal,
});