isIn method

void isIn(
  1. Iterable<DateTime> values
)

Implementation

void isIn(Iterable<DateTime> values) {
  _raw = '$columnName IN (' +
      values.map(dateYmdHms.format).map((s) => '$s').join(', ') +
      ')';
}