ChatProviderModel constructor

ChatProviderModel(
  1. bool isChatting,
  2. CHAT_SESSION_STATUS chatSessionStatus,
  3. Iterable<Agent> agents,
  4. Iterable<ChatLog> logs,
  5. int queuePosition,
  6. String queueId,
  7. ChatDepartment? chatDepartment,
)

Implementation

ChatProviderModel(
  this.isChatting,
  this.chatSessionStatus,
  this.agents,
  this.logs,
  this.queuePosition,
  this.queueId,
  this.chatDepartment,
);