shown property

bool shown

If the magnifier is shown or not.

shown is:

Implementation

bool get shown {
  if (overlayEntry == null) {
    return false;
  }

  if (animationController != null) {
    return animationController!.status == AnimationStatus.completed ||
        animationController!.status == AnimationStatus.forward;
  }

  return true;
}