MobileMenuProps constructor

const MobileMenuProps({
  1. required List<MobileNavItem> items,
  2. Widget? cta,
  3. void onClose()?,
  4. bool isOpen = false,
})

Implementation

const MobileMenuProps({
  required this.items,
  this.logo,
  this.cta,
  this.onClose,
  this.isOpen = false,
});