Thread constructor

Thread({
  1. String? uid,
  2. String? topic,
  3. String? content,
  4. String? type,
  5. String? status,
  6. bool? top,
  7. bool? unread,
  8. int? unreadCount,
  9. bool? mute,
  10. int? star,
  11. bool? folded,
  12. String? client,
  13. String? extra,
  14. UserProtobuf? user,
  15. String? updatedAt,
})

Implementation

Thread(
    {this.uid,
    this.topic,
    this.content,
    this.type,
    this.status,
    //
    this.top,
    this.unread,
    this.unreadCount,
    this.mute,
    this.star,
    this.folded,
    //
    this.client,
    this.extra,
    //
    this.user,
    // this.agent,
    //
    this.updatedAt})
    : super();