Badge.blue constructor

Badge.blue({
  1. required String label,
  2. String? message,
  3. int? labelWidth,
  4. int? messageWidth,
})

Implementation

Badge.blue({
  required this.label,
  this.message,
  this.labelWidth,
  this.messageWidth,
}) : theme = BadgeTheme.blue;