S360fInfoCard constructor

const S360fInfoCard({
  1. required String label,
  2. required IconData icon,
  3. Key? key,
  4. Color iconColor = Colors.blue,
  5. Color backgroundColor = const Color(0xFFEEF2FF),
  6. double borderRadius = 16.0,
})

Implementation

const S360fInfoCard({
  required this.label,
  required this.icon,
  super.key,
  this.iconColor = Colors.blue,
  this.backgroundColor = const Color(0xFFEEF2FF),
  this.borderRadius = 16.0,
});