TChip constructor
const
TChip({
- required Widget label,
- Key? key,
- VoidCallback? onTap,
- Color? backgroundColor,
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 10, vertical: 2),
- double radius = TSizes.cardRadiusSm,
Implementation
const TChip({
required this.label,
super.key,
this.onTap,
this.backgroundColor,
this.padding = const EdgeInsets.symmetric(horizontal: 10, vertical: 2),
this.radius = TSizes.cardRadiusSm,
});