SquareIconCard constructor

const SquareIconCard({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. required IconData? icon,
  5. Color? color,
  6. Color? backgroundColor,
  7. double elevation = 5,
  8. double fontSize = 18,
})

Implementation

const SquareIconCard({
  super.key,
  required this.title,
  required this.subtitle,
  required this.icon,
  this.color,
  this.backgroundColor,
  this.elevation = 5,
  this.fontSize = 18,
});