ZetaGlobalHeaderItem constructor

const ZetaGlobalHeaderItem({
  1. Key? key,
  2. bool? rounded,
  3. Widget? dropdown,
  4. bool? active,
  5. VoidCallback? handlePress,
  6. required String label,
})

Constructor for tab item

Implementation

const ZetaGlobalHeaderItem({
  super.key,
  super.rounded,
  this.dropdown,
  this.active,
  this.handlePress,
  required this.label,
});