reset method

BoxerQueryOption reset({
  1. BoxerQueryOption? option,
})

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;
}