DialogView constructor

DialogView({
  1. required BuildContext context,
  2. required Widget? child,
  3. EdgeInsets? contentPadding = EdgeInsets.zero,
  4. double? elevation = 0,
  5. Color? backgroundColor = Colors.transparent,
  6. bool? barrierDismissible = false,
  7. bool? showClose = true,
  8. 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});