charSet method
This attribute declares the document's character encoding. Read more...
Implementation
Meta charSet(String charSet, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('charset', charSet);
node.attrs!.add(attr);
}
return this;
}