inList<T> static method
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())]);