QqBadge constructor

const QqBadge({
  1. Key? key,
  2. double radius = 10,
  3. String text = '3',
  4. TextStyle textStyle = const TextStyle(color: Colors.white, fontSize: 8.0),
  5. dynamic onClearBadge()?,
})

Implementation

const QqBadge({
  Key? key,
  this.radius = 10,
  this.text = '3',
  this.textStyle = const TextStyle(
    color: Colors.white,
    fontSize: 8.0,
  ),
  this.onClearBadge,
}) : super(key: key);