Where constructor
Creates a WHERE clause with optional initial conditions.
whereBodies
Optional list of initial SQL conditions.
Implementation
Where([List<SQL>? whereBodies]) {
if (whereBodies != null) {
_whereBodies.addAll(whereBodies);
}
}