()
| 287 | /** The value selected in the listbox, represented as an array of option values. */ |
| 288 | @Input('cdkListboxValue') |
| 289 | get value(): readonly T[] { |
| 290 | return this._invalid ? [] : this.selectionModel.selected; |
| 291 | } |
| 292 | set value(value: readonly T[]) { |
| 293 | this._setSelection(value); |
| 294 | } |
nothing calls this directly
no test coverage detected