ne<STRUCT> function
Matches if the field
is not equal to the given value
.
If STRUCT
is specified, the value
is expected to be a STRUCT
instance
and is automatically converted to a Map.
Implementation
FilterExpr ne<STRUCT>(String field, dynamic value) {
if (STRUCT == dynamic) return FilterNe(field, value);
return FilterNeStruct<STRUCT>(field, value);
}