BlurDialogBackground constructor

const BlurDialogBackground({
  1. Key? key,
  2. Color? color,
  3. Widget? dialog,
  4. bool? dismissable,
  5. double? blur,
  6. Function? onDismiss,
})

Implementation

const BlurDialogBackground(
    {Key? key,
    this.color,
    this.dialog,
    this.dismissable,
    this.blur,
    this.onDismiss})
    : super(key: key);