AdaptiveBadge constructor

const AdaptiveBadge({
  1. Key? key,
  2. required String label,
  3. Color? backgroundColor,
  4. Color? textColor,
})

Creates an adaptive badge.

Implementation

const AdaptiveBadge({
  super.key,
  required this.label,
  this.backgroundColor,
  this.textColor,
});