httpEquiv method
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;
}