SubZeroDialog constructor

const SubZeroDialog({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. String? body,
  5. Widget? content,
  6. SubZeroDialogActions? actions,
  7. SubZeroDialogActionLayout actionLayout = SubZeroDialogActionLayout.sideBySide,
  8. Widget? customActions,
  9. double? maxWidth,
  10. EdgeInsets? contentPadding,
})

Implementation

const SubZeroDialog({
  super.key,
  required this.title,
  this.subtitle,
  this.body,
  this.content,
  this.actions,
  this.actionLayout = SubZeroDialogActionLayout.sideBySide,
  this.customActions,
  this.maxWidth,
  this.contentPadding,
});