removeEventCallback method

void removeEventCallback(
  1. String callbackId
)

Removes the callback with the provided ID.

Does nothing if no callback exists with the provided ID.

Implementation

void removeEventCallback(String callbackId) {
  _callJsMethod(() => _jsObject.removeEventCallback(callbackId));
}