addWhereGroup method

void addWhereGroup(
  1. String sql, [
  2. List? values
])

Implementation

void addWhereGroup(String sql, [List<dynamic>? values]) {
  where = where == null ? '($sql)' : '($where) AND ($sql)';
  if (values != null) params.addAll(values);
}