M3EDialog constructor

const M3EDialog({
  1. required String title,
  2. Widget? icon,
  3. Widget? content,
  4. EdgeInsets? contentPadding,
  5. List<Widget> actions = const <Widget>[],
  6. bool topDivider = false,
  7. bool bottomDivider = false,
  8. Key? key,
})

M3EDialog.

Implementation

const M3EDialog({
  required this.title,
  this.icon,
  this.content,
  this.contentPadding,
  this.actions = const <Widget>[],
  this.topDivider = false,
  this.bottomDivider = false,
  super.key,
});