ping method

A ping(
  1. List<String> urlList, {
  2. bool? removeIf,
})

A list of URLs. Read more...

Implementation

A ping(List<String> urlList, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('ping', _html.listToSpaces(urlList));
    node.attrs!.add(attr);
  }
  return this;
}