MilestoneProgressBar constructor

const MilestoneProgressBar({
  1. Key? key,
  2. required double percentage,
  3. Color? percentCompleteColor,
  4. Color? percentRemainingColor,
})

Implementation

const MilestoneProgressBar(
    {super.key,
    required this.percentage,
    this.percentCompleteColor,
    this.percentRemainingColor});