addOrWhereGroup method

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

Implementation

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