HoverTab constructor

HoverTab({
  1. Key? key,
  2. required Color backgroundColor,
  3. required Color tabColor,
  4. required Color iconBackground,
  5. bool sideButton = false,
  6. bool backbutton = true,
  7. required List<Widget> background,
  8. required int tabNumber,
  9. required List<Widget> tabNames,
  10. required List<Widget> insideTab,
})

Implementation

HoverTab({
  Key? key,
  required this.backgroundColor,
  required this.tabColor,
  required this.iconBackground,
  this.sideButton=false,
  this.backbutton = true,
  required this.background,
  required this.tabNumber,
  required this.tabNames,
  required this.insideTab,
}) : super(key: key);