equals method

ConditionQuery equals(
  1. dynamic other
)

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

Implementation

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