()
| 292 | */ |
| 293 | @Input({transform: booleanAttribute}) |
| 294 | get indeterminate(): boolean { |
| 295 | return this._indeterminate(); |
| 296 | } |
| 297 | set indeterminate(value: boolean) { |
| 298 | const changed = value != this._indeterminate(); |
| 299 | this._indeterminate.set(value); |
nothing calls this directly
no test coverage detected