exists method

KeyBuilder<T> exists(
  1. bool exists
)

$exists 这个 Key 有值

Implementation

KeyBuilder<T> exists(bool exists) {
  _json['\$exists'] = exists;
  return this;
}