LayoutActionsRow constructor

const LayoutActionsRow({
  1. Key? key,
  2. required Widget? profile,
  3. required bool showThemeToggle,
  4. required bool showColorToggle,
  5. required List<Widget>? actions,
  6. required bool showFullscreenToggle,
  7. required bool showLogout,
  8. required VoidCallback? onLogout,
  9. double spacing = 10,
  10. double runSpacing = 5,
})

Implementation

const LayoutActionsRow({
  super.key,
  required this.profile,
  required this.showThemeToggle,
  required this.showColorToggle,
  required this.actions,
  required this.showFullscreenToggle,
  required this.showLogout,
  required this.onLogout,
  this.spacing = 10,
  this.runSpacing = 5,
});