DialogShell constructor

const DialogShell({
  1. Key? key,
  2. required Widget child,
  3. double maxWidth = 480,
})

Implementation

const DialogShell({
  super.key,
  required this.child,
  this.maxWidth = 480,
});