text property

String get text

Gets the text.

Implementation

String get text => _text;
set text (String val)

Sets the text.

Implementation

set text(String val) {
  if (_text == val) return;
  _text = val;
  markNeedsLayout();
}