DialogView constructor
DialogView({
- required BuildContext context,
- required Widget? child,
- EdgeInsets? contentPadding = EdgeInsets.zero,
- double? elevation = 0,
- Color? backgroundColor = Colors.transparent,
- bool? barrierDismissible = false,
- bool? showClose = true,
- dynamic onClose()?,
Implementation
DialogView(
{required this.context,
required this.child,
this.contentPadding = EdgeInsets.zero,
this.elevation = 0,
this.backgroundColor = Colors.transparent,
this.barrierDismissible = false,
this.showClose = true,
this.onClose});