busy property

bool get busy

Implementation

bool get busy => _busy?.get() ?? false;
set busy (dynamic v)

Implementation

set busy(dynamic v)
{
  if (_busy != null)
  {
    _busy!.set(v);
  }
  else if (v != null)
  {
    _busy = BooleanObservable(Binding.toKey("POSTMASTER", 'busy'), v, scope: System().scope, listener: System().onPropertyChange);
  }
}