* Sets the select's value. Part of the ControlValueAccessor interface * required to integrate with Angular's core forms API. * * @param value New value to be written to the model.
(value: any)
| 814 | * @param value New value to be written to the model. |
| 815 | */ |
| 816 | writeValue(value: any): void { |
| 817 | this._assignValue(value); |
| 818 | } |
| 819 | |
| 820 | /** |
| 821 | * Saves a callback function to be invoked when the select's value |
nothing calls this directly
no test coverage detected