MobileMenu constructor

const MobileMenu({
  1. required List<MobileNavItem> items,
  2. Component? cta,
  3. void onClose()?,
  4. bool isOpen = false,
  5. Key? key,
})

Implementation

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