systemerrortext property

String? get systemerrortext

Implementation

String? get systemerrortext => _systemerrortext?.get();
set systemerrortext (dynamic v)

Implementation

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