(position: number)
| 182 | /** The shifted index position of the tab body, where zero represents the active center tab. */ |
| 183 | @Input() |
| 184 | set position(position: number) { |
| 185 | this._positionIndex = position; |
| 186 | this._computePositionAnimationState(); |
| 187 | } |
| 188 | |
| 189 | constructor() { |
| 190 | if (this._dir) { |
nothing calls this directly
no test coverage detected