TBadge constructor
const
TBadge({})
Default primary badge constructor.
Implementation
const TBadge({
Key? key,
required String label,
Color? backgroundColor,
Color? textColor,
double radius = 8,
}) : this._(
label: label,
backgroundColor: backgroundColor,
textColor: textColor,
badgeType: TBadgeType.raw,
radius: radius,
);