StepItem constructor

const StepItem({
  1. required String label,
  2. StepStatus status = StepStatus.pending,
  3. String? description,
})

Implementation

const StepItem({
  required this.label,
  this.status = StepStatus.pending,
  this.description,
});