()
| 111 | /** Whether the chip is selected. */ |
| 112 | @Input({transform: booleanAttribute}) |
| 113 | get selected(): boolean { |
| 114 | return this._selected; |
| 115 | } |
| 116 | set selected(value: boolean) { |
| 117 | this._setSelectedState(value, false, true); |
| 118 | } |
nothing calls this directly
no test coverage detected