BadgeChip constructor

const BadgeChip({
  1. Key? key,
  2. required String label,
  3. String? colorHex,
  4. bool isOutline = false,
})

Implementation

const BadgeChip({
  super.key,
  required this.label,
  this.colorHex,
  this.isOutline = false,
});