ne<STRUCT> function

FilterExpr ne<STRUCT>(
  1. String field,
  2. dynamic value
)

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);
}