whereGroup method
---------- WHERE GROUP ----------
Implementation
Query<T> whereGroup(void Function(Query<T> q) callback) {
final sub = Query<T>(model);
callback(sub);
if (sub.base.where != null) {
base.addWhereGroup(
sub.base.where!,
sub.base.params,
);
}
return this;
}