MmUserThread constructor

MmUserThread({
  1. String? id,
  2. int? replyCount,
  3. int? lastReplyAt,
  4. int? lastViewedAt,
  5. List<MmPost> participants = const [],
  6. MmPost? post,
})

Returns a new MmUserThread instance.

Implementation

MmUserThread({
  this.id,
  this.replyCount,
  this.lastReplyAt,
  this.lastViewedAt,
  this.participants = const [],
  this.post,
});