LayoutProfileButton constructor

const LayoutProfileButton({
  1. Key? key,
  2. required Widget profile,
  3. bool showThemeToggle = true,
  4. bool showColorToggle = true,
  5. bool showFullscreenToggle = true,
  6. bool showLogout = true,
  7. VoidCallback? onLogout,
})

Implementation

const LayoutProfileButton({
  super.key,
  required this.profile,
  this.showThemeToggle = true,
  this.showColorToggle = true,
  this.showFullscreenToggle = true,
  this.showLogout = true,
  this.onLogout,
});