value property

String get value

Gets the complete value of the text field.

Implementation

String get value => controller.text;
set value (String text)

Sets the complete value of the text field.

Implementation

set value(String text) {
  controller.text = text;
}