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