TabItemStyle constructor

const TabItemStyle({
  1. TextStyle textStyle = const TextStyle(fontWeight: FontWeight.w600, fontSize: 15),
  2. CountIndicatorStyle countIndicatorStyle = const CountIndicatorStyle(textStyle: TextStyle(fontWeight: FontWeight.normal, color: Colors.white, fontSize: 11)),
})

Implementation

const TabItemStyle(
    {this.textStyle =
        const TextStyle(fontWeight: FontWeight.w600, fontSize: 15),
    this.countIndicatorStyle = const CountIndicatorStyle(
        textStyle: TextStyle(
            fontWeight: FontWeight.normal,
            color: Colors.white,
            fontSize: 11))});