TabItem constructor

TabItem(
  1. IconData icon,
  2. String title,
  3. Color circleColor, {
  4. Color? circleStrokeColor,
  5. TextStyle labelStyle = const TextStyle(fontWeight: FontWeight.bold),
})

Implementation

TabItem(
  this.icon,
  this.title,
  this.circleColor, {
  this.circleStrokeColor,
  this.labelStyle = const TextStyle(fontWeight: FontWeight.bold),
});