tertiarycontainer property

String? get tertiarycontainer

Implementation

String? get tertiarycontainer => _tertiarycontainer?.get();
set tertiarycontainer (dynamic v)

Implementation

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