isInsidePolygon method

bool isInsidePolygon(
  1. String identifier
)

Returns true if currently inside the specified polygon.

Implementation

bool isInsidePolygon(String identifier) {
  return _insideState[identifier] ?? false;
}