ping method

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

Contains a list of URLs to which, when the hyperlink is followed, POST requests with the body PING will be sent by the browser (in the background). Read more...

Implementation

Area 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;
}