()
| 399 | /** Orientation of the stepper. */ |
| 400 | @Input() |
| 401 | get orientation(): StepperOrientation { |
| 402 | return this._orientation; |
| 403 | } |
| 404 | set orientation(value: StepperOrientation) { |
| 405 | // This is a protected method so that `MatStepper` can hook into it. |
| 406 | this._orientation = value; |
no test coverage detected