* Sets the input's value. * @param value The new value of the input * @docs-private
(value: any)
| 812 | * @docs-private |
| 813 | */ |
| 814 | override writeValue(value: any): void { |
| 815 | if (this._isControlInitialized || value !== null) { |
| 816 | this.value = value; |
| 817 | this._updateWidthInactive(); |
| 818 | this._updateSibling(); |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | override _setValue(value: string) { |
| 823 | super._setValue(value); |
nothing calls this directly
no test coverage detected