deselectOnActivate property

  1. @Input()
set deselectOnActivate (bool value)

If true and selectOnActivate is true, triggering this item component will deselect the currently selected value within the selection; if false, triggering this component when value is selected will do nothing.

Implementation

@Input()
set deselectOnActivate(bool value) {
  _deselectOnActivate = value;
}