value property
String?
get
value
Implementation
String? get value => _value?.get();
set
value
(dynamic v)
Implementation
set value(dynamic v) {
if (_value != null) {
_value!.set(v);
} else if (v != null) {
_value = StringObservable(null, v, scope: scope);
}
}