QueryBuilder<OBJ, R, S> constructor

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

Implementation

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