href method
The hyperlink target for the area. Read more...
Implementation
Area href(String url, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('href', url);
node.attrs!.add(attr);
}
return this;
}