CountIndicatorStyle constructor

const CountIndicatorStyle({
  1. TextStyle textStyle = const TextStyle(fontWeight: FontWeight.normal, color: Colors.white, fontSize: 11),
  2. Color bgColor = const Color(0xff4879F9),
  3. double? radius = 9,
})

Implementation

const CountIndicatorStyle(
    {this.textStyle = const TextStyle(
        fontWeight: FontWeight.normal, color: Colors.white, fontSize: 11),
    this.bgColor = const Color(0xff4879F9),
    this.radius = 9});