srcSet method
Indicating possible image sources for the user agent to use. Read more...
Implementation
Img srcSet(List<String> srcList, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('srcset', _html.listToCommas(srcList));
node.attrs!.add(attr);
}
return this;
}