UGlassCard constructor

const UGlassCard({
  1. required Widget child,
  2. Key? key,
  3. Color? tint,
  4. double blur = 12,
  5. double opacity = 0.22,
  6. double borderRadius = 20,
  7. double shadowBlur = 30,
  8. double shadowOpacity = 0.0,
})

Implementation

const UGlassCard({
  required this.child,
  super.key,
  this.tint,
  this.blur = 12,
  this.opacity = 0.22,
  this.borderRadius = 20,
  this.shadowBlur = 30,
  this.shadowOpacity = 0.0,
});