Chip constructor

Chip({
  1. required Widget label,
  2. Widget? avatar,
  3. CmdCallback? onDeleted,
  4. Widget? deleteIcon,
  5. Color? backgroundColor,
  6. EdgeInsets? padding,
  7. bool enabled = true,
  8. Key? key,
})

Implementation

Chip({
  required this.label,
  this.avatar,
  this.onDeleted,
  this.deleteIcon,
  this.backgroundColor,
  this.padding,
  this.enabled = true,
  super.key,
});