()
| 213 | /** The side that the drawer is attached to. */ |
| 214 | @Input() |
| 215 | get position(): 'start' | 'end' { |
| 216 | return this._position; |
| 217 | } |
| 218 | set position(value: 'start' | 'end') { |
| 219 | // Make sure we have a valid value. |
| 220 | value = value === 'end' ? 'end' : 'start'; |
nothing calls this directly
no test coverage detected