findDescriptors method
Returns all service descriptors which bind to type.
Implementation
List<ServiceDescriptor> findDescriptors(Type type) => serviceDescriptors
.where((element) => element.bindingType == type)
.toList();
Returns all service descriptors which bind to type.
List<ServiceDescriptor> findDescriptors(Type type) => serviceDescriptors
.where((element) => element.bindingType == type)
.toList();