GlassCard constructor

const GlassCard({
  1. Key? key,
  2. required Widget child,
  3. double? width,
  4. double? height,
  5. EdgeInsetsGeometry padding = const EdgeInsets.all(16),
})

Implementation

const GlassCard({
  super.key,
  required this.child,
  this.width,
  this.height,
  this.padding = const EdgeInsets.all(16),
});