TChip constructor

TChip({
  1. Key? key,
  2. required Widget title,
  3. Color? backgroundColor,
  4. Widget? avatar,
  5. void onClick()?,
  6. void onDelete()?,
})

Implementation

TChip({
  super.key,
  required this.title,
  this.backgroundColor,
  this.avatar,
  this.onClick,
  this.onDelete,
});