reset method
Implementation
BoxerQueryOption reset({BoxerQueryOption? option}) {
distinct = option?.distinct;
columns = option?.columns;
where = option?.where;
whereArgs = option?.whereArgs;
groupBy = option?.groupBy;
having = option?.having;
orderBy = option?.orderBy;
limit = option?.limit;
offset = option?.offset;
return this;
}