unregister method
dynamic
unregister(
- dynamic callback
Implementation
unregister(callback) {
if (this.pluginCallbacks.indexOf(callback) != -1) {
splice(this.pluginCallbacks, this.pluginCallbacks.indexOf(callback), 1);
}
return this;
}