Deselects the option.
(emitEvent = true)
| 176 | |
| 177 | /** Deselects the option. */ |
| 178 | deselect(emitEvent = true): void { |
| 179 | if (this._selected) { |
| 180 | this._selected = false; |
| 181 | this._changeDetectorRef.markForCheck(); |
| 182 | |
| 183 | if (emitEvent) { |
| 184 | this._emitSelectionChangeEvent(); |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | /** Sets focus onto this option. */ |
| 190 | focus(_origin?: FocusOrigin, options?: FocusOptions): void { |
nothing calls this directly
no test coverage detected