Clears out the selected values.
()
| 238 | |
| 239 | /** Clears out the selected values. */ |
| 240 | private _unmarkAll() { |
| 241 | if (!this.isEmpty()) { |
| 242 | this._selection.forEach(value => this._unmarkSelected(value)); |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Verifies the value assignment and throws an error if the specified value array is |
no test coverage detected