x property

String? get x

Implementation

String? get x => _x?.get();
set x (dynamic v)

Implementation

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