ariaHidden method
Hides the element from screen readers.
Example:
Div().ariaHidden() // aria-hidden="true"
Div().ariaHidden(false) // aria-hidden="false"
Implementation
ElementBuilder ariaHidden([bool h = true]) {
attr('aria-hidden', StringAttribute(h ? 'true' : 'false'));
return this;
}