NavigationPanelMenu constructor

const NavigationPanelMenu({
  1. Key? key,
  2. required NavigationPanelMenuItem item,
  3. bool compact = false,
  4. void onTap()?,
})

Implementation

const NavigationPanelMenu({
  Key? key,
  required this.item,
  this.compact = false,
  this.onTap,
}) : super(key: key);