** Defines a '<meta>' tag to be injected into the bottom of your head. Created via `HtmlInjector`.** ** @see `https://developer.mozilla.org/en/docs/Web/HTML/Element/meta` class MetaTagBuilder {private HtmlElement elementinternalnew make(){this.element = HtmlElement("meta")}** Sets the 'name' attribute.** Returns 'this'. MetaTagBuilder withName(Str name){ element["name"] = namereturnthis}** Sets the 'content' attribute.** Returns 'this'. MetaTagBuilder withContent(Str content){ element["content"] = contentreturnthis}** Sets the 'property' attribute.** Returns 'this'. MetaTagBuilder withProperty(Str property){ element["property"] = propertyreturnthis}** Sets the 'lang' attribute.** Returns 'this'. MetaTagBuilder withLang(Str lang){ element["lang"] = langreturnthis}** Sets an arbitrary attribute on the '<meta>' element. MetaTagBuilder setAttr(Str name, Str value){ element[name] = valuereturnthis}** Returns an attribute value on the '<meta>' element. Str? getAttr(Str name){ element[name]} @NoDoc // looks like it could be useful! HtmlNode htmlNode(){ element}}