remove method

void remove(
  1. ArgumentCallback<T> callback
)

Removes a callback from this collection.

Does nothing, if the callback was not present.

Implementation

void remove(ArgumentCallback<T> callback) {
  _callbacks.remove(callback);
}