isVisible static method

bool isVisible(
  1. String identify
)

Use this method to check if is visible widget with your identify.

Implementation

static bool isVisible(String identify) {
  return _mapOverlayEntry.containsKey(identify);
}