TabItem constructor

TabItem({
  1. required Color color,
  2. required Widget title,
  3. Color? unselectedColor,
  4. Color? labelColor,
  5. Color? unselectedLabelColor,
  6. TextStyle? labelStyle,
  7. TextStyle? unselectedLabelStyle,
})

Implementation

TabItem({
  required this.color,
  required this.title,
  Color? unselectedColor,
  this.labelColor,
  this.unselectedLabelColor,
  this.labelStyle,
  this.unselectedLabelStyle,
}) : this.unSelectedColor = unselectedColor ?? color;