Write a new value to the element.
Source
void writeValue(dynamic value) { var normalizedValue = value ?? ''; this._renderer.setElementProperty( this._elementRef.nativeElement, "value", normalizedValue); }
Write a new value to the element.
void writeValue(dynamic value) { var normalizedValue = value ?? ''; this._renderer.setElementProperty( this._elementRef.nativeElement, "value", normalizedValue); }