removeEventListener method
Implementation
void removeEventListener(String event, void Function(Event) callback,
{Map<String, String>? options}) {
element?.removeEventListener(
event,
callback.toJS,
options as JSAny,
);
}
void removeEventListener(String event, void Function(Event) callback,
{Map<String, String>? options}) {
element?.removeEventListener(
event,
callback.toJS,
options as JSAny,
);
}