ariaLabel property
String?
get
ariaLabel
Implementation
String? get ariaLabel => _ariaLabel ?? label;
The label to use for assistive technology.
If not provided, uses the label instead.
Implementation
@Input()
set ariaLabel(String? value) {
_ariaLabel = value;
}