stopPropagation method

void stopPropagation()

Stops propagation of this event through the DOM hierarchy.

Forwards directly to web.Event.stopPropagation on rawEvent.

event.stopPropagation();

Implementation

void stopPropagation() => rawEvent.stopPropagation();