withinBox method
Implementation
Query withinBox({
required GeoPoint topLeft,
required GeoPoint bottomRight,
required String field,
}) =>
Query(
client,
index,
compoundBody,
field,
isWithinBox: GeoBoxQuery(
topLeft: topLeft, bottomRight: bottomRight, field: field),
);