bool onClick()

Source

bool onClick() {
  // If no target, or if target is _self, prevent default browser behavior
  if (this.target is! String || this.target == "_self") {
    this._router.navigateByInstruction(this._navigationInstruction);
    return false;
  }
  return true;
}