whereStartsWith method

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

Starts with operator

Implementation

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