whereIsNull method
Is null operator
Implementation
QueryBuilder whereIsNull(String field, bool isNull) {
_filters['${field}__isnull'] = isNull.toString();
return this;
}
Is null operator
QueryBuilder whereIsNull(String field, bool isNull) {
_filters['${field}__isnull'] = isNull.toString();
return this;
}