value property
String
get
value
Implementation
String get value {
String rtn = '';
if (this is TextFormField) {
rtn = (this as TextFormField).value;
} else {
//fix this as we add widgets
throw Exception("value is not supported on " + this.toString());
}
return rtn;
}
set
value
(String newValue)
Implementation
set value(String newValue) {
if (this is TextFormField) {
(this as TextFormField).value = newValue;
} else {
//fix this as we add widgets
throw Exception("value is not supported on " + this.toString());
}
}