()
| 247 | /** Whether the drawer can be closed with the escape key or by clicking on the backdrop. */ |
| 248 | @Input() |
| 249 | get disableClose(): boolean { |
| 250 | return this._disableClose; |
| 251 | } |
| 252 | set disableClose(value: BooleanInput) { |
| 253 | this._disableClose = coerceBooleanProperty(value); |
| 254 | } |
nothing calls this directly
no test coverage detected