visible property

bool? get visible

True to show the Candidate window, false to hide it.

Implementation

bool? get visible => _wrapped.visible;
set visible (bool? v)

Implementation

set visible(bool? v) {
  _wrapped.visible = v;
}