Filter.notExists constructor

Filter.notExists(
  1. String key
)

Matches values that don't exist.

Implementation

factory Filter.notExists(String key) => Filter.exists(key, exists: false);