whereEqualTo method

void whereEqualTo (String key, dynamic value)

Add a constraint to the query that requires a particular key's value to be equal to the provided value.

Implementation

void whereEqualTo(String key, dynamic value) {
  _where[key] = value;
}