Conversation constructor

Conversation({
  1. String? accountId,
  2. String? asigneeId,
  3. String? createdAt,
  4. String? customerId,
  5. String? id,
  6. String? priority,
  7. bool? read,
  8. String? status,
  9. List<PapercupsMessage> messages = const [],
})

Implementation

Conversation({
  this.accountId,
  this.asigneeId,
  this.createdAt,
  this.customerId,
  this.id,
  this.priority,
  this.read,
  this.status,
  this.messages = const [],
});