StepItemData constructor

const StepItemData({
  1. required String title,
  2. String? description,
  3. StepStatus status = StepStatus.pending,
  4. Widget? content,
})

Implementation

const StepItemData({
  required this.title,
  this.description,
  this.status = StepStatus.pending,
  this.content,
});