text property

String text

Implementation

String get text => _value ?? '';
void text=(String t)

Implementation

set text(String t) {
  if (t.isEmpty) {
    value = null;
  } else {
    value = t;
  }
}