getKeyedServicesFromType method

Iterable<Object> getKeyedServicesFromType(
  1. Type serviceType,
  2. Object? serviceKey
)

Get an enumeration of services of type serviceType from the ServiceProvider.

Implementation

Iterable<Object> getKeyedServicesFromType(
        Type serviceType, Object? serviceKey) =>
    getRequiredKeyedServiceFromType(serviceType, serviceKey)
        as Iterable<Object>;