whereWithinRadians method

void whereWithinRadians (String key, ParseGeoPoint point, double maxDistance)

Add a proximity based constraint for finding objects with key point values near the point given and within the maximum distance given.

Implementation

void whereWithinRadians(String key, ParseGeoPoint point, double maxDistance) {
  _addCondition(key, "whereWithinRadians",
      <String, dynamic>{'point': point.toJson, 'maxDistance': maxDistance});
}