CLSummaryStatCard constructor

const CLSummaryStatCard({
  1. Key? key,
  2. required IconData icon,
  3. required String label,
  4. required String value,
  5. required Color color,
  6. bool compact = false,
  7. EdgeInsetsGeometry? padding,
  8. VoidCallback? onTap,
})

Implementation

const CLSummaryStatCard({
  super.key,
  required this.icon,
  required this.label,
  required this.value,
  required this.color,
  this.compact = false,
  this.padding,
  this.onTap,
});