geoNear method
Implementation
LogicCommand geoNear({
Point? geometry,
required num maxDistance,
required num minDistance,
}) {
if (geometry == null) {
throw CloudBaseException(
code: CloudBaseExceptionCode.INVALID_PARAM,
message: '"geometry" can not be null.',
);
}
return this.queryOP(QueryCommandsLiteral.GEO_NEAR, {
'geometry': geometry,
'maxDistance': maxDistance,
'minDistance': minDistance
});
}