unregister<T extends Object> method

  1. @override
void unregister<T extends Object>({
  1. String? name,
})
override

Removes the instance of the specified Object type from the DI container.

Implementation

@override
void unregister<T extends Object>({String? name}) {
  _instance.unregister<T>(instanceName: name);
}