()
| 150 | /** Whether the option is selected. */ |
| 151 | @Input() |
| 152 | get selected(): boolean { |
| 153 | return this._selectionList.selectedOptions.isSelected(this); |
| 154 | } |
| 155 | set selected(value: BooleanInput) { |
| 156 | const isSelected = coerceBooleanProperty(value); |
| 157 |
nothing calls this directly
no test coverage detected