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