removeDefinition method
Remove the pod associated with name
.
This method removes a pod from the registry, making the name available for reuse (depending on implementation constraints).
name
: The name of the pod to remove
Throws:
NoSuchPodDefinitionException
if no pod exists with the given name
Example:
if (registry.containsDefinition('oldService')) {
registry.removeDefinition('oldService');
print('Removed oldService from registry');
}
Implementation
@override
Future<void> removeDefinition(String name) async {
await getPodFactory().removeDefinition(name);
}