lang method
Sets the language of the element's content.
Example:
Div().lang('es') // Spanish
P().lang('en-US') // English (US)
Implementation
ElementBuilder lang(String value) {
attr('lang', StringAttribute(value));
return this;
}
Sets the language of the element's content.
Example:
Div().lang('es') // Spanish
P().lang('en-US') // English (US)
ElementBuilder lang(String value) {
attr('lang', StringAttribute(value));
return this;
}