notEquals method

ConditionQuery notEquals(
  1. dynamic other
)

Get sql statement to check weather this field value not equal to another (db field, some native value).

Implementation

ConditionQuery notEquals(dynamic other) {
  return ConditionQuery(operatorString: '!=', before: this, after: other);
}