LifecycleStep constructor

const LifecycleStep({
  1. required String label,
  2. String? description,
  3. required dynamic icon,
  4. required Color color,
})

Implementation

const LifecycleStep({
  required this.label,
  this.description,
  required this.icon,
  required this.color,
});