()
| 113 | @Event() ionBlur!: EventEmitter<void>; |
| 114 | |
| 115 | componentDidLoad() { |
| 116 | /** |
| 117 | * The value may be `undefined` if it |
| 118 | * gets set before the radio is |
| 119 | * rendered. This ensures that the radio |
| 120 | * is checked if the value matches. This |
| 121 | * happens most often when Angular is |
| 122 | * rendering the radio. |
| 123 | */ |
| 124 | this.updateState(); |
| 125 | } |
| 126 | |
| 127 | /** @internal */ |
| 128 | @Method() |
nothing calls this directly
no test coverage detected