whereEndsWith method
Ends with operator
Implementation
QueryBuilder whereEndsWith(String field, String value) {
_filters['${field}__endswith'] = value;
return this;
}
Ends with operator
QueryBuilder whereEndsWith(String field, String value) {
_filters['${field}__endswith'] = value;
return this;
}