text property

String text

The current text in the search field.

Implementation

String get text => textEditingController?.text ?? '';
void text=(String text)

Displays text in the search field and overrides the existing.

Implementation

set text(String text) => textEditingController?.text = text;