where method
Add WHERE condition
Implementation
UpdateQuery where(String condition, [List<dynamic> args = const []]) {
if (_whereClause.isEmpty) {
_whereClause = 'WHERE $condition';
} else {
_whereClause += ' AND $condition';
}
_whereArgs.addAll(args);
return this;
}