GlowCard constructor

const GlowCard({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. String? subtitle,
  5. IconData? icon,
  6. Color? glowColor,
  7. double glowIntensity = 0.3,
  8. bool useGradient = false,
  9. double borderRadius = 16,
  10. EdgeInsetsGeometry? padding,
  11. VoidCallback? onTap,
})

Implementation

const GlowCard({
  super.key,
  required this.child,
  this.title,
  this.subtitle,
  this.icon,
  this.glowColor,
  this.glowIntensity = 0.3,
  this.useGradient = false,
  this.borderRadius = 16,
  this.padding,
  this.onTap,
});