TAlertDialog constructor

const TAlertDialog({
  1. Key? key,
  2. required Widget content,
  3. bool scrollable = true,
  4. TextStyle? titleTextStyle,
  5. Widget? title,
  6. List<Widget>? actions,
  7. VoidCallback? onCancel,
  8. VoidCallback? onSubmit,
})

Implementation

const TAlertDialog({
  super.key,
  required this.content,
  this.scrollable = true,
  this.titleTextStyle,
  this.title,
  this.actions,
  this.onCancel,
  this.onSubmit,
});