whereExpr method

QueryBuilder whereExpr(
  1. Expression condition, [
  2. Object? param,
  3. String andOr = 'AND'
])

Implementation

QueryBuilder whereExpr(Expression condition,
    [Object? param, String andOr = 'AND']) {
  throw UnsupportedOperationException('`whereExpr` not implemented');
}