TAlertDialog constructor
const
TAlertDialog({
- Key? key,
- required Widget content,
- bool scrollable = true,
- TextStyle? titleTextStyle,
- Widget? title,
- List<
Widget> ? actions, - VoidCallback? onCancel,
- VoidCallback? onSubmit,
Implementation
const TAlertDialog({
super.key,
required this.content,
this.scrollable = true,
this.titleTextStyle,
this.title,
this.actions,
this.onCancel,
this.onSubmit,
});