TUIChip constructor
const
TUIChip({
- Key? key,
- required String title,
- TUIChipSize size = TUIChipSize.m,
- bool highlighted = false,
- IconData? leftIcon,
- TUIImage? leftIconImage,
- String? badgeValue,
- IconData? rightIcon,
- VoidCallback? onRightIconTap,
Implementation
const TUIChip({
super.key,
required this.title,
this.size = TUIChipSize.m,
this.highlighted = false,
this.leftIcon,
this.leftIconImage,
this.badgeValue,
this.rightIcon,
this.onRightIconTap,
});