isNotIn method

void isNotIn(
  1. Iterable<DateTime> values
)

Implementation

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