DefaultDialog constructor

const DefaultDialog({
  1. Key? key,
  2. Widget? title,
  3. List<Widget>? buttons,
  4. bool dismissible = true,
})

Implementation

const DefaultDialog(
    {Key? key, this.title, this.buttons, this.dismissible = true})
    : super(key: key);