TBadge.outline constructor

const TBadge.outline({
  1. Key? key,
  2. required String label,
  3. Color? textColor,
  4. Color? borderColor,
  5. double radius = 8,
})

Implementation

const TBadge.outline({
  Key? key,
  required String label,
  Color? textColor,
  Color? borderColor,
  double radius = 8,
}) : this._(
        label: label,
        borderColor: borderColor,
        textColor: textColor,
        badgeType: TBadgeType.outline,
        radius: radius,
      );