Filter.notNull constructor Null safety
- String field
Filter where the field
value is not null.
Implementation
factory Filter.notNull(String field) => Filter.notEquals(field, null);
Filter where the field
value is not null.
factory Filter.notNull(String field) => Filter.notEquals(field, null);