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,
})

Implementation

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