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