AtomicProgressCard constructor
const
AtomicProgressCard({
- Key? key,
- double? value,
- required String title,
- String? subtitle,
- IconData? icon,
- Color? valueColor,
- Color? backgroundColor,
- AtomicProgressVariant variant = AtomicProgressVariant.linear,
- bool showPercentage = true,
- VoidCallback? onTap,
- EdgeInsetsGeometry? margin,
- 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,
});