Conversation constructor

Conversation({
  1. String? id,
  2. DateTime? createdAt,
  3. Map<String, String>? metadata,
})

Implementation

Conversation({
  this.id,
  this.createdAt,
  this.metadata,
});