WidgetGlassBackground constructor

const WidgetGlassBackground({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? margin,
  4. double blur = 10.0,
  5. EdgeInsetsGeometry? padding,
  6. BorderRadius? borderRadius,
  7. Color? backgroundColor,
  8. BoxDecoration? decoration,
})

Implementation

const WidgetGlassBackground({
  super.key,
  required this.child,
  this.margin,
  this.blur = 10.0,
  this.padding,
  this.borderRadius,
  this.backgroundColor,
  this.decoration,
});