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