secondarycontainer property

String? get secondarycontainer

Implementation

String? get secondarycontainer => _secondarycontainer?.get();
set secondarycontainer (dynamic v)

Implementation

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