clearListeners method

void clearListeners()

Implementation

void clearListeners() {
  if (hierarchicalLoggingEnabled || _parent == null) {
    _controller?.close();
    _controller = null;
  } else {
    _root.clearListeners();
  }
}