requestShutdown method

void requestShutdown()

Pushes a shutdown event into the backend.

Implementation

void requestShutdown() {
  if (_disposed) return;
  _shutdownController.add(null);
}