GroupConversation constructor

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

Implementation

GroupConversation({
  this.id,
  this.topic,
  this.hasAttachments,
  this.uniqueSenders,
  this.lastDeliveredDateTime,
  this.preview,
  this.threads,
});