ariaLabel property
String?
get
ariaLabel
Implementation
String? get ariaLabel => _ariaLabel ?? label;
ARIA label to use for the toggle button.
Implementation
@Input()
set ariaLabel(String? value) {
_ariaLabel = value;
}