DialogTitle constructor

const DialogTitle({
  1. Key? key,
  2. VoidCallback? onClosePressed,
  3. required Widget child,
  4. bool isPageDismissible = true,
})

Implementation

const DialogTitle({
  super.key,
  this.onClosePressed,
  required this.child,
  this.isPageDismissible = true,
});