Convenience method to add an event listener on a given element, late bound to a named method on this element.
Dart note: You must annotate the method with @reflectable to ensure it is available to be invoked.
Source
void listen(Element node, String eventName, String methodName) {
jsElement.callMethod('listen', [node, eventName, methodName]);
}