disabled property
Implementation
bool get disabled => _disabled;
If true, the panel will remain in the collapsed state with no way to expand it, or if expanded by default, it will stay in expanded state.
Implementation
@Input()
set disabled(bool? value) {
_disabled = value ?? false;
_changeDetector.markForCheck();
}