MmPostList constructor

MmPostList({
  1. List<String> order = const [],
  2. Map<String, MmPost> posts = const {},
  3. String? nextPostId,
  4. String? prevPostId,
  5. bool? hasNext,
})

Returns a new MmPostList instance.

Implementation

MmPostList({
  this.order = const [],
  this.posts = const {},
  this.nextPostId,
  this.prevPostId,
  this.hasNext,
});