whereValueExists method

void whereValueExists(
  1. String column,
  2. bool value
)

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',
    ),
  );
}