PaginationCubit constructor

PaginationCubit(
  1. Query<Object?> _query,
  2. int _limit,
  3. DocumentSnapshot<Object?>? _startAfterDocument, {
  4. bool isLive = false,
  5. bool includeMetadataChanges = false,
  6. GetOptions? options,
})

Implementation

PaginationCubit(
  this._query,
  this._limit,
  this._startAfterDocument, {
  this.isLive = false,
  this.includeMetadataChanges = false,
  this.options,
}) : super(PaginationInitial());