findServices method
Returns all running services which are bound to type.
Implementation
List<RunningService> findServices(Type type) => runningServices
.where((element) => element.descriptor.bindingType == type)
.toList();
Returns all running services which are bound to type.
List<RunningService> findServices(Type type) => runningServices
.where((element) => element.descriptor.bindingType == type)
.toList();