SimpleDialog({Key key, Widget title, EdgeInsets titlePadding, List<Widget> children, EdgeInsets contentPadding })

Creates a simple dialog.

Typically used in conjunction with showDialog.

Source

SimpleDialog({
  Key key,
  this.title,
  this.titlePadding,
  this.children,
  this.contentPadding,
}) : super(key: key);