SelectionChip constructor

const SelectionChip({
  1. Key? key,
  2. required String label,
  3. bool isSelected = false,
  4. bool enabled = true,
  5. Widget? leadingIcon,
  6. ValueChanged<bool>? onSelected,
  7. VoidCallback? onDeleted,
})

Implementation

const SelectionChip({
  super.key,
  required this.label,
  this.isSelected = false,
  this.enabled = true,
  this.leadingIcon,
  this.onSelected,
  this.onDeleted,
});