findServicesExact method

List<RunningService> findServicesExact(
  1. Type type
)

Returns all running services which have the implementation class type.

Implementation

List<RunningService> findServicesExact(Type type) => runningServices
    .where((element) => element.obj.runtimeType == type)
    .toList();