ChatSession constructor

ChatSession({
  1. DateTime? createdAt,
  2. DateTime? updatedAt,
  3. String? email,
  4. String? businessId,
  5. String? customer,
  6. String? phoneNo,
  7. Message? message,
  8. bool? escalated,
  9. String? sentiment,
  10. String? channel,
  11. String? category,
  12. String? type,
  13. String? department,
  14. String? escalationDepartment,
  15. String? title,
  16. bool? isCompleted,
  17. String? createdDate,
  18. String? updateDate,
  19. String? id,
})

Implementation

ChatSession(
    {this.createdAt,
    this.updatedAt,
    this.email,
    this.businessId,
    this.customer,
    this.phoneNo,
    this.message,
    this.escalated,
    this.sentiment,
    this.channel,
    this.category,
    this.type,
    this.department,
    this.escalationDepartment,
    this.title,
    // this.titles,
    this.isCompleted,
    this.createdDate,
    this.updateDate,
    this.id});