ariaLabel property

String get ariaLabel

Implementation

String get ariaLabel => _ariaLabel ?? label ?? '';
  1. @Input.new()
set ariaLabel (String value)

ARIA label to use for the toggle button.

Implementation

@Input()
set ariaLabel(String value) {
  _ariaLabel = value;
}