Filter.notNull constructor

Filter.notNull(
  1. String field
)

Filter where the field value is not null.

Implementation

factory Filter.notNull(String field) => Filter.notEquals(field, null);