Chip constructor
Chip({
- required Widget label,
- Widget? avatar,
- CmdCallback? onDeleted,
- Widget? deleteIcon,
- Color? backgroundColor,
- EdgeInsets? padding,
- bool enabled = true,
- Key? key,
Implementation
Chip({
required this.label,
this.avatar,
this.onDeleted,
this.deleteIcon,
this.backgroundColor,
this.padding,
this.enabled = true,
super.key,
});