findServicesWithDescriptor method
Returns all running services which have the associated descriptor
.
Implementation
List<RunningService> findServicesWithDescriptor(
ServiceDescriptor descriptor) =>
runningServices
.where((element) => element.descriptor == descriptor)
.toList();