x1 property

String? get x1

Implementation

String? get x1 => _x1?.get();
set x1 (dynamic v)

Implementation

set x1(dynamic v) {
  if (_x1 != null) {
    _x1!.set(v);
  } else if (v != null) {
    _x1 = StringObservable(Binding.toKey(id, 'x1'), v, scope: scope);
  }
}