inList<T> static method

Query inList<T>(
  1. String column,
  2. List<T> value
)

Actually does what you'd expect, the above is for direct use

Implementation

static Query inList<T>(String column, List<T> value) => Query([WhereClauseIn(column, value.length)], [...value.map((e) => e.toString())]);