text property

String text

Text of the message.

Implementation

String get text => _textFieldController.text;
void text=(String text)

Sets the text of the message.

Implementation

set text(String text) {
  _textFieldController.text = text;
}