()
| 184 | /** Whether the labels should appear after or before the radio-buttons. Defaults to 'after' */ |
| 185 | @Input() |
| 186 | get labelPosition(): 'before' | 'after' { |
| 187 | return this._labelPosition; |
| 188 | } |
| 189 | set labelPosition(v) { |
| 190 | this._labelPosition = v === 'before' ? 'before' : 'after'; |
| 191 | this._markRadiosForCheck(); |
nothing calls this directly
no test coverage detected