removeEventListener method

void removeEventListener(
  1. String type,
  2. EventListener? callback, [
  3. dynamic options
])

Implementation

void removeEventListener(String type, EventListener? callback,
        [dynamic options]) =>
    js_util.callMethod(this, 'removeEventListener',
        [type, callback == null ? null : allowInterop(callback), options]);