Thread constructor

const Thread({
  1. String? tid,
  2. String? topic,
  3. String? wid,
  4. String? uid,
  5. String? nickname,
  6. String? avatar,
  7. String? content,
  8. String? timestamp,
  9. int? unreadCount,
  10. String? type,
  11. bool? current,
  12. bool? top,
  13. bool? topVisitor,
  14. bool? nodisturb,
  15. bool? nodisturbVisitor,
  16. bool? unread,
  17. bool? unreadVisitor,
  18. String? client,
  19. String? currentUid,
})

Implementation

const Thread(
    {this.tid,
    this.topic,
    this.wid,
    this.uid,
    this.nickname,
    this.avatar,
    this.content,
    this.timestamp,
    this.unreadCount,
    this.type,
    this.current,
    this.top,
    this.topVisitor,
    this.nodisturb,
    this.nodisturbVisitor,
    this.unread,
    this.unreadVisitor,
    this.client,
    this.currentUid});