whereValueExists method
Returns an object where the String column for the object has data correctly entered/saved
Implementation
void whereValueExists(String column, bool value) {
queries.add(_buildQueryWithColumnValueAndOperator(
MapEntry<String, dynamic>(column, value), '\$exists'));
}