ThreadInfo constructor Null safety

ThreadInfo(
  1. {int replyCount = 0,
  2. List<User> mostRepliesUsers = const [],
  3. int lastRepliedAt = 0,
  4. int? updatedAt}
)

Implementation

ThreadInfo({
  this.replyCount = 0,
  this.mostRepliesUsers = const [],
  this.lastRepliedAt = 0,
  this.updatedAt,
});