Where constructor

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

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);
  }
}