StepItem constructor

const StepItem({
  1. required String title,
  2. String? description,
  3. bool completed = false,
  4. bool active = false,
})

Implementation

const StepItem({
  required this.title,
  this.description,
  this.completed = false,
  this.active = false,
});