href method
The URL that the hyperlink points to. Read more...
Implementation
A href(String url, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('href', url);
node.attrs!.add(attr);
}
return this;
}