onsecondarycontainer property

String? get onsecondarycontainer

Implementation

String? get onsecondarycontainer => _onsecondarycontainer?.get();
set onsecondarycontainer (dynamic v)

Implementation

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