sizes method
Indicating a set of source sizes. Read more...
Implementation
Img sizes(List<String> sizesList, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('sizes', _html.listToCommas(sizesList));
node.attrs!.add(attr);
}
return this;
}