isNativeHtmlEvent function

bool isNativeHtmlEvent(
  1. String eventName
)

Returns true if event is an html event that is handled by DOM apis directly and doesn't need to go through plugin system.

Implementation

bool isNativeHtmlEvent(String eventName) => _nativeEventSet.contains(eventName);