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