useMap method

Object useMap(
  1. String id, {
  2. bool? removeIf,
})

A hash-name reference to a <map> element; that is a '#' followed by the value of a name of a map element. Read more...

Implementation

Object useMap(String id, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('usemap', id);
    node.attrs!.add(attr);
  }
  return this;
}