MilestoneProgressCard constructor

const MilestoneProgressCard({
  1. Key? key,
  2. required Widget title,
  3. required Widget subtitle,
  4. VoidCallback? onTap,
  5. required double percent,
  6. required Color background,
  7. required Color leftTopGradientOverlay,
  8. bool isCompleted = false,
})

Implementation

const MilestoneProgressCard({
  super.key,
  required this.title,
  required this.subtitle,
  this.onTap,
  required this.percent,
  required this.background,
  required this.leftTopGradientOverlay,
  this.isCompleted = false,
});