()
| 766 | */ |
| 767 | @Input() |
| 768 | get hasBackdrop(): boolean { |
| 769 | return this._drawerHasBackdrop(this._start) || this._drawerHasBackdrop(this._end); |
| 770 | } |
| 771 | set hasBackdrop(value: BooleanInput) { |
| 772 | this._backdropOverride = value == null ? null : coerceBooleanProperty(value); |
| 773 | } |
nothing calls this directly
no test coverage detected