stopService method
Stops the service with the given id.
Implementation
void stopService(String id) {
_services[id]?.stop();
_services.remove(id);
_permanentServices.remove(id);
}
Stops the service with the given id.
void stopService(String id) {
_services[id]?.stop();
_services.remove(id);
_permanentServices.remove(id);
}