value property

T? value

The current value of the form field.

Implementation

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

Set the current value of the form field.

Implementation

set value(T? newValue) {
  controller.value = newValue;
  onChange?.call(controller.value);
}