()
| 174 | /** The value of the listbox, which is the combined value of the selected chips. */ |
| 175 | @Input() |
| 176 | get value(): any { |
| 177 | return this._value; |
| 178 | } |
| 179 | set value(value: any) { |
| 180 | if (this._chips && this._chips.length) { |
| 181 | this._setSelectionByValue(value, false); |
nothing calls this directly
no test coverage detected