AppBadge constructor

const AppBadge({
  1. Key? key,
  2. required int? count,
  3. Color? color,
  4. Color? labelColor,
  5. TextStyle? labelStyle,
  6. double size = 16.0,
})

Implementation

const AppBadge({
  super.key,
  required this.count,
  this.color,
  this.labelColor,
  this.labelStyle,
  this.size = 16.0,
});