setOrWhereSafe method

void setOrWhereSafe(
  1. String field,
  2. String operator,
  3. dynamic value
)

Implementation

void setOrWhereSafe(String field, String operator, value) {
  //assert(field != null);
  //assert(operator != null);
  //assert(value != null);
  //mWheres.add(WhereNode(field, value, operator: operator, andOr: 'OR'));
  mWheres.add(WhereNode(field,
      param: value, operator: operator, andOr: 'OR', type: WhereType.safe));
}