Criterion constructor

Criterion({
  1. List<String>? contains,
  2. List<String>? eq,
  3. bool? exists,
  4. List<String>? neq,
})

Implementation

Criterion({
  this.contains,
  this.eq,
  this.exists,
  this.neq,
});