findServicesExact method
Returns all running services which have the implementation class type
.
Implementation
List<RunningService> findServicesExact(Type type) => runningServices
.where((element) => element.obj.runtimeType == type)
.toList();