GestuMenuSecondaryItemWidget<G> constructor

const GestuMenuSecondaryItemWidget<G>({
  1. Key? key,
  2. required String title,
  3. required G index,
  4. bool isSelected = false,
  5. IconData? prefixIconData,
  6. IconData? suffixIconData,
  7. ValueChanged<G>? onTap,
  8. bool isPrimary = false,
  9. TextStyle? textStyle,
  10. Color? selectedColor,
  11. Color? selectedTextColor,
  12. BoxDecoration? decoration,
  13. num? counter,
})

Constructor for GestuMenuSecondaryItemWidget.

Implementation

const GestuMenuSecondaryItemWidget({
  super.key,
  required this.title,
  required this.index,
  this.isSelected = false,
  this.prefixIconData,
  this.suffixIconData,
  this.onTap,
  this.isPrimary = false,
  this.textStyle,
  this.selectedColor,
  this.selectedTextColor,
  this.decoration,
  this.counter,
});