addWhere method

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

---------- WHERE ----------

Implementation

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