whereExists method
WHERE EXISTS (subquery)
Implementation
@override
QueryBuilderInterface<T> whereExists(
String Function(QueryBuilderInterface<dynamic> query) callback,
) {
final query = QueryBuilder<dynamic>(connection, grammar, '');
callback(query);
_wheres.add({'type': 'Exists', 'query': query, 'boolean': 'AND'});
_whereBindings.addAll(query.bindings);
return this;
}