LayoutDesktopTopBar constructor

const LayoutDesktopTopBar({
  1. Key? key,
  2. required TSidebarItem? homeItem,
  3. required List<TSidebarItem> resolvedItems,
  4. required Widget? profile,
  5. required bool showThemeToggle,
  6. required bool showColorToggle,
  7. required List<Widget>? actions,
  8. required bool showFullscreenToggle,
  9. required bool showLogout,
  10. required VoidCallback? onLogout,
})

Implementation

const LayoutDesktopTopBar({
  super.key,
  required this.homeItem,
  required this.resolvedItems,
  required this.profile,
  required this.showThemeToggle,
  required this.showColorToggle,
  required this.actions,
  required this.showFullscreenToggle,
  required this.showLogout,
  required this.onLogout,
});