()
| 298 | } |
| 299 | |
| 300 | private _updateRadioButtonNames(): void { |
| 301 | if (this._radios) { |
| 302 | this._radios.forEach(radio => { |
| 303 | radio.name = this.name; |
| 304 | radio._markForCheck(); |
| 305 | }); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | /** Updates the `selected` radio button from the internal _value state. */ |
| 310 | private _updateSelectedRadioFromValue(): void { |