value property

  1. @Input()
set value (dynamic s)

The value to set on the component if the component implements RendersValue. Optional.

Implementation

@Input()
set value(dynamic s) {
  _value = s;
  _valueChanged = true;
}