isMap method

Img isMap(
  1. bool boolean
)

This attribute indicates that the image is part of a server-side map. Read more...

Implementation

Img isMap(bool boolean) {
  if (boolean && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('ismap', '');
    node.attrs!.add(attr);
  }
  return this;
}