Toggles the current selected state of this chip.
(isUserInput: boolean = false)
| 164 | |
| 165 | /** Toggles the current selected state of this chip. */ |
| 166 | toggleSelected(isUserInput: boolean = false): boolean { |
| 167 | this._setSelectedState(!this.selected, isUserInput, true); |
| 168 | return this.selected; |
| 169 | } |
| 170 | |
| 171 | override _handlePrimaryActionInteraction() { |
| 172 | if (!this.disabled) { |
no test coverage detected