WidgetGlassBackground constructor

const WidgetGlassBackground({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? margin,
  4. double? blur,
  5. EdgeInsets? padding,
  6. BorderRadius? borderRadius,
  7. Color? backgroundColor,
  8. Border? border,
})

Implementation

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