text property

String text
inherited

Implementation

String get text => _text;
  1. @override
void text=(String value)
override

Implementation

@override
set text(String value) {
  if (text != value) {
    super.text = value;
    // This ensures that the component will redraw on next update
    _previousChar = -1;
  }
}