TodayNavigationItem constructor

TodayNavigationItem({
  1. required String label,
  2. TodaySvgIcon? icon,
  3. Function? onTap,
  4. bool hasAction = false,
  5. String? actionTooltip,
  6. Function? onAction,
  7. bool selected = false,
  8. List<TodayNavigationItem>? children,
})

Implementation

TodayNavigationItem({
  required this.label,
  this.icon,
  this.onTap,
  this.hasAction = false,
  this.actionTooltip,
  this.onAction,
  this.selected = false,
  this.children,
});