remove<T> method
Dispose bind from the memory
Implementation
@override
@mustCallSuper
bool remove<T>() {
final type = _getInjectType<T>();
if (_singletonBinds.containsKey(type)) {
var singletonBind = _singletonBinds[type]!;
_executeDisposeImplementation(singletonBind);
_singletonBinds.remove(type);
return true;
} else {
return false;
}
}