whereEqualTo method
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;
}
Add a constraint to the query that requires a particular key's value to be equal to the provided value.
void whereEqualTo(String key, dynamic value) {
_where[key] = value;
}