EnhancedIcon constructor

const EnhancedIcon({
  1. Key? key,
  2. required IconData icon,
  3. required Color color,
  4. double size = 28,
  5. double containerSize = 60,
  6. Color? backgroundColor,
  7. bool enableAnimation = true,
  8. bool enablePulse = true,
  9. bool showShadow = true,
})

Implementation

const EnhancedIcon({
  super.key,
  required this.icon,
  required this.color,
  this.size = 28,
  this.containerSize = 60,
  this.backgroundColor,
  this.enableAnimation = true,
  this.enablePulse = true,
  this.showShadow = true,
});