to property

String get to

Implementation

String get to => _to?.get() ?? "1";
set to (dynamic v)

Implementation

set to(dynamic v) {
  if (_to != null) {
    _to!.set(v);
  } else if (v != null) {
    _to = StringObservable(Binding.toKey(id, 'to'), v,
        scope: scope, listener: onPropertyChange);
  }
}