ariaLabel method
Sets the accessible label for screen readers.
Example:
Button().ariaLabel('Close dialog')('×')
Implementation
T ariaLabel(String value) {
attr('aria-label', StringAttribute(value));
return self;
}
Sets the accessible label for screen readers.
Example:
Button().ariaLabel('Close dialog')('×')
T ariaLabel(String value) {
attr('aria-label', StringAttribute(value));
return self;
}