errorcontainer property

String? get errorcontainer

Implementation

String? get errorcontainer => _errorcontainer?.get();
set errorcontainer (dynamic v)

Implementation

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