httpEquiv method

Meta httpEquiv(
  1. String value, {
  2. bool? removeIf,
})

Defines a pragma directive. Read more...

Implementation

Meta httpEquiv(String value, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('http-equiv', value);
    node.attrs!.add(attr);
  }
  return this;
}