79664787

Date: 2025-06-13 11:49:22
Score: 2
Natty:
Report link

dart:html is deprecated.

Import the "web" package (https://pub.dev/packages/web) :

import "package:web/web.dart";

void navigate(String url, {String target = "_self"}) {
  if (target == "_blank") {
    window.open(url, "_blank")?.focus();
  } else {
    window.location.href = url;
  }
}

// In the current tab:
navigate("https://stackoverflow.com/questions/ask");
// In another tab:
navigate("https://stackoverflow.com/questions/ask", target: "_blank");
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ThomasG2201