setWhereWithExpression method

void setWhereWithExpression(
  1. Expression condition,
  2. dynamic param, [
  3. String andOr = 'AND'
])

Implementation

void setWhereWithExpression(Expression condition, param,
    [String andOr = 'AND']) {
  mWheres.add(WhereNode(condition.toString(),
      param: param, andOr: andOr, type: WhereType.simple));
}