whereGreaterThan method
The value corresponding to key
is greater than value
.
Implementation
ConversationQuery whereGreaterThan(
String key,
dynamic value,
) {
condition.whereGreaterThan(key, value);
return this;
}
The value corresponding to key
is greater than value
.
ConversationQuery whereGreaterThan(
String key,
dynamic value,
) {
condition.whereGreaterThan(key, value);
return this;
}