LogoutDialog constructor

const LogoutDialog({
  1. Key? key,
  2. Color? backgroundColor,
  3. VoidCallback? onLogout,
  4. Color? titleColor,
  5. Color? contentColor,
  6. Color? cancelColor,
  7. Color? confirmColor,
  8. Color? borderColor = Colors.grey,
  9. String? title,
  10. String? content,
  11. String? cancelText,
  12. String? confirmText,
  13. dynamic titleFontSize,
  14. dynamic contentFontSize,
  15. dynamic cancelFontSize,
  16. dynamic confirmFontSize,
  17. bool? buttonInRow,
  18. bool? divider,
})

Implementation

const LogoutDialog({
  super.key,
  this.backgroundColor,
  this.onLogout,
  this.titleColor,
  this.contentColor,
  this.cancelColor,
  this.confirmColor,
  this.borderColor = Colors.grey,
  this.title,
  this.content,
  this.cancelText,
  this.confirmText,
  this.titleFontSize,
  this.contentFontSize,
  this.cancelFontSize,
  this.confirmFontSize,
  this.buttonInRow,
  this.divider,
  });