Milestone constructor

Milestone({
  1. required Widget title,
  2. Widget? icon,
  3. Widget? child,
  4. Widget? prefixChild,
  5. bool isActive = true,
})

Implementation

Milestone(
    {required this.title,
    this.icon,
    this.child,
    this.prefixChild,
    this.isActive = true});