whereNotIn method

DBHelper whereNotIn(
  1. String column,
  2. List values
)

Add a WHERE NOT IN condition

Implementation

DBHelper whereNotIn(String column, List<dynamic> values) {
  if (values.isNotEmpty) {
    final placeholders = List.filled(values.length, '?').join(',');
    _whereConditions.add("$column NOT IN ($placeholders)");
    _bindings.addAll(values);
  }
  return this;
}