Badge constructor

Badge(
  1. String label, {
  2. Color? background,
  3. Color? foreground,
  4. EdgeInsets? padding,
  5. Style? textStyle,
  6. Key? key,
})

Implementation

Badge(
  this.label, {
  this.background,
  this.foreground,
  this.padding,
  this.textStyle,
  super.key,
});