stopAllServices method
void
stopAllServices()
Stops all registered services.
This stops EVERYTHING, regardless of permanent status.
Implementation
void stopAllServices() {
for (final service in _services.values) {
service.stop();
}
_services.clear();
_permanentServices.clear();
}