TdDialog constructor

const TdDialog({
  1. Key? key,
  2. VoidCallback? onClosed,
  3. Image? image,
  4. Widget? title,
  5. required Widget content,
  6. bool showCloseButton = false,
  7. bool scrollable = false,
  8. required TdDialogActions actionButton,
})

Implementation

const TdDialog({
  super.key,
  this.onClosed,
  this.image,
  this.title,
  required this.content,
  this.showCloseButton = false,
  this.scrollable = false,
  required this.actionButton,
});