ariaLabel property

String get ariaLabel

Implementation

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

The label to use for assistive technology.

If not provided, uses the label instead.

Implementation

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