group method

Implementation

BoxerQueryOption group() {
  String? _where = where;
  if (_where != null && (_where = _where.trim()).isNotEmpty) {
    where = ' ( $where ) ';
  }
  return this;
}