ClueCircleCounter constructor

const ClueCircleCounter({
  1. Key? key,
  2. Color backgroundColor = MyColors.xFF000000,
  3. required int count,
})

Creates a ClueCircleCounter.

backgroundColor is the background color of the counter. count is the number to be displayed inside the counter.

Implementation

const ClueCircleCounter({
  super.key,
  this.backgroundColor = MyColors.xFF000000,
  required this.count,
});