* Marks the radio button as needing checking for change detection. * This method is exposed because the parent radio group will directly * update bound properties of the radio button.
()
| 624 | * update bound properties of the radio button. |
| 625 | */ |
| 626 | _markForCheck() { |
| 627 | // When group value changes, the button will not be notified. Use `markForCheck` to explicit |
| 628 | // update radio button's status |
| 629 | this._changeDetector.markForCheck(); |
| 630 | } |
| 631 | |
| 632 | ngOnInit() { |
| 633 | if (this.radioGroup) { |
no test coverage detected