isVisible property

bool get isVisible

Implementation

bool get isVisible => _isVisible;
  1. @Input.new()
set isVisible (bool n)

Implementation

@Input()
set isVisible(bool n) {
  if (n) {
    _showIt();
  } else {
    _hideIt();
  }
}