AndWhere constructor

AndWhere([
  1. List<SQL>? whereBodies
])

Creates an AND WHERE clause with optional initial conditions.

whereBodies Optional list of initial SQL conditions to combine with AND.

Implementation

AndWhere([List<SQL>? whereBodies]) : super(whereBodies) {
  _whereBodies = whereBodies ?? [];
}