whereLessThan method

void whereLessThan (String key, dynamic value)

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);
}