content method

Meta content(
  1. String text, {
  2. bool? removeIf,
})

This attribute contains the value for the http-equiv or name attribute, depending on which is used. Read more...

Implementation

Meta content(String text, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('content', text);
    node.attrs!.add(attr);
  }
  return this;
}