WhereCondition constructor

const WhereCondition()

Lower-level control over the value of a Query#where map.

Example:

Query(where: [
  Where.exact('myField', 'must_match_this_value')
  Where('myOtherField').contains('must_contain_this_value'),
])

Implementation

const WhereCondition();