DashboardCardHeader constructor

const DashboardCardHeader({
  1. Key? key,
  2. required String label,
  3. required IconData icon,
  4. required Color accentColor,
  5. DashboardCardStyle style = const DashboardCardStyle(),
})

Implementation

const DashboardCardHeader({
  super.key,
  required this.label,
  required this.icon,
  required this.accentColor,
  this.style = const DashboardCardStyle(),
});