NiceStatCard constructor
const
NiceStatCard({
- Key? key,
- required String title,
- required String value,
- String? subtitle,
- IconData? icon,
- Color? iconColor,
- Color? backgroundColor,
- Widget? trend,
- VoidCallback? onTap,
- EdgeInsets? padding,
Implementation
const NiceStatCard({
super.key,
required this.title,
required this.value,
this.subtitle,
this.icon,
this.iconColor,
this.backgroundColor,
this.trend,
this.onTap,
this.padding,
});