visible property

bool get visible

Implementation

bool get visible => _visible;
  1. @Input()
set visible (bool val)

Whether to show the dropdown or not.

Implementation

@Input()
set visible(bool val) {
  if (_visible != val) {
    _visible = val;
    _visibleStream.add(val);
    if (showFilterInsidePopup && !_visible) {
      materialTreeFilterComponent?.clear();
    }
  }
}