TChip constructor
const
TChip({
- Key? key,
- required Widget title,
- Color? backgroundColor,
- Widget? avatar,
- void onClick()?,
- void onDelete()?,
- MouseCursor? mouseCursor,
Implementation
const TChip({
super.key,
required this.title,
this.backgroundColor,
this.avatar,
this.onClick,
this.onDelete,
this.mouseCursor,
});