addOrWhere method

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

---------- OR WHERE ----------

Implementation

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