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