ProgressCard constructor

const ProgressCard({
  1. required int progress,
  2. required int totalTasks,
  3. required int completedTasks,
  4. Key? key,
})

Implementation

const ProgressCard({
  required this.progress,
  required this.totalTasks,
  required this.completedTasks,
  super.key,
});