text property
String
get
text
Implementation
String get text => internalValue ?? '';
set
text
(String t)
Implementation
set text(String t) {
if (t.isEmpty) {
value = null;
} else {
value = t;
}
}