requestShutdown method
void
requestShutdown()
Pushes a shutdown event into the backend.
Implementation
void requestShutdown() {
if (_disposed) return;
_shutdownController.add(null);
}
Pushes a shutdown event into the backend.
void requestShutdown() {
if (_disposed) return;
_shutdownController.add(null);
}