SmallBadge constructor

const SmallBadge({
  1. required Size size,
  2. Color backgroundColor = Colors.red,
  3. Key? key,
})

Implementation

const SmallBadge({
  required this.size,
  this.backgroundColor = Colors.red,
  super.key,
});