whereSafe method

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

add a andWhere safe way against SQL injection

Implementation

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