From the docs:
You can also chain multiple where() methods to create more specific queries (logical AND).
How can I perform an <
For Flutter dart language use this:
db.collection("projects").where("status", whereIn: ["public", "unlisted", "secret"]);