notEquals method

AppAmbitCmsQuery<T> notEquals(
  1. String field,
  2. String value
)

Implementation

AppAmbitCmsQuery<T> notEquals(String field, String value) {
  _nativeFilters.add({'type': 'notEquals', 'field': field, 'value': value});
  return this;
}