findServices method

List<RunningService> findServices(
  1. Type type
)

Returns all running services which are bound to type.

Implementation

List<RunningService> findServices(Type type) => runningServices
    .where((element) => element.descriptor.bindingType == type)
    .toList();