ConversationThread constructor

ConversationThread({
  1. String? id,
  2. String? topic,
  3. bool? hasAttachments,
  4. DateTime? lastDeliveredDateTime,
  5. String? preview,
  6. bool? isLocked,
  7. List<Post>? posts,
})

Implementation

ConversationThread({
  this.id,
  this.topic,
  this.hasAttachments,
  this.lastDeliveredDateTime,
  this.preview,
  this.isLocked,
  this.posts,
});