UnreadCounter constructor

const UnreadCounter(
  1. int count, {
  2. Key? key,
  3. bool dimmed = false,
  4. bool inverted = false,
})

Implementation

const UnreadCounter(
  this.count, {
  super.key,
  this.dimmed = false,
  this.inverted = false,
});