visible property

bool get visible

Implementation

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

Whether the dropdown is visible.

Implementation

@Input()
set visible(bool value) {
  bool vis = value;
  // Make the content visible if visible is being set to true.
  if (vis && _visible != vis) {
    _contentVisible.add(true);
  }
  _visible = vis;
}