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. String? title,
  9. String? content,
  10. String? cancelText,
  11. String? confirmText,
  12. dynamic titleFontSize,
  13. dynamic contentFontSize,
  14. dynamic cancelFontSize,
  15. dynamic confirmFontSize,
})

Implementation

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