DialogBackground constructor

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

Implementation

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