MobileMenuProps constructor

const MobileMenuProps({
  1. required String id,
  2. required List<MobileNavItem> items,
  3. Widget? cta,
  4. void onClose()?,
  5. bool isOpen = false,
  6. bool escapeCloses = true,
  7. bool focusTrap = true,
  8. bool restoreFocus = true,
})

Implementation

const MobileMenuProps({
  required this.id,
  required this.items,
  this.logo,
  this.cta,
  this.onClose,
  this.isOpen = false,
  this.escapeCloses = true,
  this.focusTrap = true,
  this.restoreFocus = true,
});