whereSafe method

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

AND Where safe way against SQL injection Example: whereSafe('"toAll"', '=', 'true');

Implementation

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