TdDialog constructor
const
TdDialog({
- Key? key,
- VoidCallback? onClosed,
- Image? image,
- Widget? title,
- required Widget content,
- bool showCloseButton = false,
- bool scrollable = false,
- 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,
});