whereEndsWith method

QueryBuilder whereEndsWith(
  1. String field,
  2. String value
)

Ends with operator

Implementation

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