response property

String? get response

Implementation

String? get response => _response?.get();
set response (dynamic v)

Implementation

set response(dynamic v)
{
  if (_response != null)
  {
    _response!.set(v);
  }
  else if (v != null)
  {
    // we dont want response to be bindable
    // so set the initial value to null
    // then assign a value
    _response = StringObservable(Binding.toKey(id, 'response'), null, scope: scope, listener: onPropertyChange);
    _response!.set(v);
  }
}