whereIn static method

Query<$OrmMigrationRecord> whereIn(
  1. String column,
  2. List values, {
  3. String? connection,
})

Implementation

static Query<$OrmMigrationRecord> whereIn(
  String column,
  List<dynamic> values, {
  String? connection,
}) => Model.whereIn<$OrmMigrationRecord>(
  column,
  values,
  connection: connection,
);