ContentDialog constructor

const ContentDialog({
  1. Key? key,
  2. Widget? title,
  3. Widget? content,
  4. List<Widget>? actions,
  5. ContentDialogThemeData? style,
  6. BoxConstraints constraints = kDefaultContentDialogConstraints,
})

Creates a content dialog.

Implementation

const ContentDialog({
  super.key,
  this.title,
  this.content,
  this.actions,
  this.style,
  this.constraints = kDefaultContentDialogConstraints,
});