SelectionChip constructor
const
SelectionChip({
- Key? key,
- required String label,
- bool isSelected = false,
- bool enabled = true,
- Widget? leadingIcon,
- ValueChanged<
bool> ? onSelected, - VoidCallback? onDeleted,
Implementation
const SelectionChip({
super.key,
required this.label,
this.isSelected = false,
this.enabled = true,
this.leadingIcon,
this.onSelected,
this.onDeleted,
});