whereLessThanOrEqualTo method
Add a constraint to the query that requires a particular key's value to be less than or equal to the provided value.
Implementation
void whereLessThanOrEqualTo(String key, dynamic value) {
_addCondition(key, "whereLessThanOrEqualTo", value);
}