blocking method
This attribute explicitly indicates that certain operations should be blocked on the fetching of an external resource. Read more...
Implementation
Link blocking(List<String> operationList, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr =
VirtualAttr('blocking', _html.listToCommas(operationList));
node.attrs!.add(attr);
}
return this;
}