all method

KeyBuilder<T> all(
  1. List<T> list
)

$all 包括所有给定的值

Implementation

KeyBuilder<T> all(List<T> list) {
  _json['\$all'] = list;
  return this;
}