whereNotIn method
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;
}