BadgeOptions constructor

const BadgeOptions({
  1. bool active = true,
  2. double fontSize = 10,
  3. Color? backgroundColor,
  4. Color? foregroundColor,
  5. double width = 18,
  6. double height = 18,
})

Implementation

const BadgeOptions({
  this.active = true,
  this.fontSize = 10,
  this.backgroundColor,
  this.foregroundColor,
  this.width = 18,
  this.height = 18,
});