FrostedGlassEffect constructor

const FrostedGlassEffect({
  1. Key? key,
  2. required Widget child,
  3. Color color = Colors.black26,
  4. BorderRadius? radius,
  5. EdgeInsets? padding,
})

Implementation

const FrostedGlassEffect({
  super.key,
  required this.child,
  this.color = Colors.black26,
  this.radius,
  this.padding,
});