PostListPagedState constructor

const PostListPagedState({
  1. PostListPagedStatus status = PostListPagedStatus.initial,
  2. List<PostDetails> values = const <PostDetails>[],
  3. bool hasReachedMax = false,
  4. Object? lastRowFetched,
  5. List<String> blockedMembers = const <String>[],
  6. bool canBlock = false,
})

Implementation

const PostListPagedState({
  this.status = PostListPagedStatus.initial,
  this.values = const <PostDetails>[],
  this.hasReachedMax = false,
  this.lastRowFetched,
  this.blockedMembers = const <String>[],
  this.canBlock = false,
});