preventDefault method

void preventDefault()

Implementation

void preventDefault() {
  if (cancelable) {
    defaultPrevented = true;
  }
}