x2 property

String? get x2

Implementation

String? get x2 => _x2?.get();
set x2 (dynamic v)

Implementation

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