AIGlassCard constructor

const AIGlassCard({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets padding = const EdgeInsets.all(20),
  4. BorderRadius? borderRadius,
  5. double opacity = 0.10,
})

Implementation

const AIGlassCard({
  Key? key,
  required this.child,
  this.padding = const EdgeInsets.all(20),
  this.borderRadius,
  this.opacity = 0.10,
}) : super(key: key);