where method

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

WHERE Not secure, this one is subject to SQL injection Example: where('nome ilike ?', '%isaque%')

Implementation

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