A bridge between a control and a native element.

A ControlValueAccessor abstracts the operations of writing a new value to a DOM element representing an input control.

Please see DefaultValueAccessor for more information.

Constructors

ControlValueAccessor()

Properties

hashCode → int

Get a hash code for this object.

read-only, inherited
runtimeType → Type

A representation of the runtime type of the object.

read-only, inherited

Operators

operator ==(other) → bool

The equality operator.

inherited

Methods

noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
registerOnChange(dynamic fn(T value)) → void

Set the function to be called when the control receives a change event.

registerOnTouched(dynamic fn()) → void

Set the function to be called when the control receives a touch event.

toString() → String

Returns a string representation of this object.

inherited
writeValue(T obj) → void

Write a new value to the element.