download method

A download(
  1. bool boolean
)

Causes the browser to treat the linked URL as a download. Read more...

Implementation

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