SelectionChip<T> constructor

const SelectionChip<T>({
  1. Key? key,
  2. ChipConfig? chipConfig,
  3. required dynamic item,
  4. required dynamic onItemDelete(
    1. dynamic
    ),
  5. SelectionType? selectionType,
  6. List<ValueMapper>? valueMapper,
})

Implementation

const SelectionChip({
  Key? key,
  this.chipConfig,
  required this.item,
  required this.onItemDelete,
  this.selectionType,
  this.valueMapper,
}) : super(key: key);