expandAll property

bool get expandAll

Implementation

bool get expandAll =>
    _expandAll || (isFiltered && shouldExpandAllWhenFiltered);
  1. @Input()
set expandAll (bool value)

Whether to always expand an option group.

Implementation

@Input()
set expandAll(bool value) {
  _expandAll = value;
}