NavigationPanelItem constructor

const NavigationPanelItem({
  1. Widget? icon,
  2. Widget? label,
  3. NavigationPanelThemeData? style,
  4. bool header = false,
  5. void onTapped()?,
})

Implementation

const NavigationPanelItem({
  this.icon,
  this.label,
  this.style,
  this.header = false,
  this.onTapped,
});