ProgressCard constructor

const ProgressCard({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. required double progress,
  5. String? progressLabel,
  6. String? actionText,
  7. String? actionUrl,
})

Implementation

const ProgressCard({
  super.key,
  required this.title,
  this.subtitle,
  required this.progress,
  this.progressLabel,
  this.actionText,
  this.actionUrl,
});