LitTextBadge constructor

const LitTextBadge({
  1. Key? key,
  2. required String label,
  3. Color backgroundColor = LitColors.mediumGrey,
  4. Color textColor = Colors.white,
  5. FontWeight fontWeight = FontWeight.w700,
  6. double fontSize = 10.0,
})

Implementation

const LitTextBadge({
  Key? key,
  required this.label,
  this.backgroundColor = LitColors.mediumGrey,
  this.textColor = Colors.white,
  this.fontWeight = FontWeight.w700,
  this.fontSize = 10.0,
}) : super(key: key);