TextBadge constructor

TextBadge({
  1. required String text,
  2. Color bgColor = wippyPink500,
  3. Color textColor = wippyWhite,
})

Implementation

TextBadge({
  required this.text,
  this.bgColor = wippyPink500,
  this.textColor = wippyWhite,
});