TChip constructor

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

Implementation

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