unregisterCall method
void
unregisterCall(
- dynamic self
Implementation
void unregisterCall(self) {
if (this._registrar == self) {
this._call = null;
this._registrar = null;
} else {
throw "Wrong invoker expected $_registrar";
}
}