QueryBuilder<OBJ, R, S> constructor

QueryBuilder<OBJ, R, S>(
  1. IsarCollection<OBJ> _collection,
  2. bool _whereDistinct,
  3. Sort _whereSort
)

Implementation

QueryBuilder(this._collection, this._whereDistinct, this._whereSort)
    : _whereClauses = const [],
      _distinctByProperties = const [],
      _sortByProperties = const [],
      _filterOr = FilterGroup(filters: [], type: FilterGroupType.or),
      _filterAnd = null,
      _filterNot = false,
      _offset = null,
      _limit = null,
      _propertyName = null;