value property

T? value

The current value of the form field.

Implementation

T? get value => widget.value;
void value=(T? newValue)

Set the current value of the form field.

Implementation

set value(T? newValue) {
  widget.value = newValue;
}