unregisterCall method

void unregisterCall(
  1. dynamic self
)

Implementation

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