recheckCommandQueue method

void recheckCommandQueue()

Trigger a re-check by notifying subscribers.

Implementation

void recheckCommandQueue() {
  if (_commandQueue.isNotEmpty) {
    _notifySubscribers();
  }
}