href method
This attribute specifies the URL of the linked resource. Read more...
Implementation
Link href(String url, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('href', url);
node.attrs!.add(attr);
}
return this;
}