preventDefault method

void preventDefault()

Implementation

void preventDefault() {
  if (cancelable ?? true) {
    _defaultPrevented = true;
  }
}