AtomicProgressCard constructor

const AtomicProgressCard({
  1. Key? key,
  2. double? value,
  3. required String title,
  4. String? subtitle,
  5. IconData? icon,
  6. Color? valueColor,
  7. Color? backgroundColor,
  8. AtomicProgressVariant variant = AtomicProgressVariant.linear,
  9. bool showPercentage = true,
  10. VoidCallback? onTap,
  11. EdgeInsetsGeometry? margin,
  12. EdgeInsetsGeometry? padding,
})

Implementation

const AtomicProgressCard({
  super.key,
  this.value,
  required this.title,
  this.subtitle,
  this.icon,
  this.valueColor,
  this.backgroundColor,
  this.variant = AtomicProgressVariant.linear,
  this.showPercentage = true,
  this.onTap,
  this.margin,
  this.padding,
});