StaticEnhancedIcon constructor

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

Implementation

const StaticEnhancedIcon({
  super.key,
  required this.icon,
  required this.color,
  this.size = 28,
  this.containerSize = 60,
  this.backgroundColor,
  this.showShadow = true,
  this.glowIntensity = 0.25,
});