findServices<T extends PublicationService> method
Returns all the publication services that are instances of Type.
Implementation
Iterable<T> findServices<T extends PublicationService>() =>
_services.where((service) => service.serviceType == T).whereType<T>();