ChipFieldItem constructor

const ChipFieldItem({
  1. bool isEnabled = true,
  2. VoidCallback? onTap,
  3. Widget? avatar,
  4. String? tooltip,
  5. required Widget label,
})

Implementation

const ChipFieldItem({
  this.isEnabled = true,
  this.onTap,
  this.avatar,
  this.tooltip,
  required this.label,
});