ResponsiveMenuItems constructor

const ResponsiveMenuItems({
  1. String label = '',
  2. IconData icon = Icons.info,
  3. String? tooltip,
  4. String? labelSecondary,
  5. String? tooltipSecondary,
  6. IconData? iconSecondary,
})

Implementation

const ResponsiveMenuItems({
  this.label = '',
  this.icon = Icons.info,
  String? tooltip,
  String? labelSecondary,
  String? tooltipSecondary,
  IconData? iconSecondary,
})  : _tooltip = tooltip,
      _labelSecondary = labelSecondary,
      _tooltipSecondary = tooltipSecondary,
      _iconSecondary = iconSecondary;