NumberBadge constructor

NumberBadge({
  1. required int number,
  2. Color bgColor = wippyPink500,
  3. Color textColor = wippyWhite,
})

Implementation

NumberBadge({
  required this.number,
  this.bgColor = wippyPink500,
  this.textColor = wippyWhite,
});