ChipListItem constructor

ChipListItem(
  1. {required String text,
  2. Widget? icon,
  3. bool? isSelected,
  4. required bool canDelete,
  5. bool removeFlag = false}
)

Implementation

ChipListItem({
  required this.text,
  this.icon,
  this.isSelected,
  required this.canDelete,
  this.removeFlag = false,
});