visible property

bool get visible

Whether the overlay is visible.

Implementation

bool get visible => _visible;
set visible (bool value)

Implementation

set visible(bool value) {
  if (_visible == value) return;
  _visible = value;
  notifyListeners();
}