LargeBadge constructor

const LargeBadge({
  1. required String value,
  2. required Size size,
  3. Color textColor = Colors.white,
  4. Color backgroundColor = Colors.red,
  5. Key? key,
})

Implementation

const LargeBadge({
  required this.value,
  required this.size,
  this.textColor = Colors.white,
  this.backgroundColor = Colors.red,
  super.key,
});