OrWhere constructor
Creates an OR WHERE clause with optional initial conditions.
whereBodies
Optional list of initial SQL conditions to combine with OR.
Implementation
OrWhere([List<SQL>? whereBodies]) : super(whereBodies) {
_whereBodies = whereBodies ?? [];
}