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