groupAriaLabel property

String? get groupAriaLabel

Implementation

String? get groupAriaLabel => _groupAriaLabel ?? name;
  1. @Input.new()
set groupAriaLabel (String? groupAriaLabel)

Aria label used to describe the header.

Implementation

@Input()
set groupAriaLabel(String? groupAriaLabel) {
  _groupAriaLabel = groupAriaLabel;
}