orWhereSafe method

QueryBuilder orWhereSafe(
  1. String field,
  2. String operator,
  3. dynamic value
)

add a orWhere safe way against SQL injection

Implementation

QueryBuilder orWhereSafe(String field, String operator, value) {
  throw UnsupportedOperationException('`orWhereSafe` not implemented');
}