You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure it's worth taking this out. It's arguably still convenient to have them on the HtmlAnchorElement. It's also more efficient if you only want one.
This issue was originally filed by @seaneagan
The following members of HtmlAnchorElement all duplicate members of dart:uri's Uri:
hostName
host
hash
pathname
port
protocol
search
origin ???
They ought to be removed, since you can just do:
final uri = new Uri.fromString(anchor.href);
print(uri.scheme);
// etc.
The text was updated successfully, but these errors were encountered: