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) || (WidgetModel.isBound(this, Binding.toKey(id, 'value')))) {
_value = StringObservable(Binding.toKey(id, 'value'), v, scope: scope, listener: onPropertyChange);
}
}
}