MyStep constructor

MyStep({
  1. Text? subtitle,
  2. Text? title,
  3. String? label,
  4. required Widget content,
  5. Icon? stepIcon,
})

Implementation

MyStep({
  this.subtitle,
  this.title,
  this.label,
  required this.content,
  this.stepIcon, // Add this line
});