primary property

String? get primary

Implementation

String? get primary => _primary?.get();
set primary (dynamic v)

Implementation

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