Example:
List<String> vehicleList = ['bus', 'plane']
var tarifRef = _firestore
.collection("vehicles")
.where("models", arrayContains: vehicleList );
Is there a way I can return documents that contain only the items in the vehicleList ?