within method

SelectorBuilder within(
  1. String fieldName,
  2. dynamic value
)

Implementation

SelectorBuilder within(String fieldName, value) {
  _addExpression(fieldName, {
    '\$within': {'\$box': value}
  });
  return this;
}