Badge.yellow constructor

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

Implementation

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