ItemHiddenMenuRight constructor

ItemHiddenMenuRight({
  1. Key? key,
  2. String? name,
  3. bool selected = false,
  4. Function? onTap,
  5. Color colorLineSelected = Colors.blue,
  6. TextStyle? baseStyle,
  7. TextStyle? selectedStyle,
})

Implementation

ItemHiddenMenuRight({
  Key? key,
  this.name,
  this.selected = false,
  this.onTap,
  this.colorLineSelected = Colors.blue,
  this.baseStyle,
  this.selectedStyle,
}) : super(key: key);