ChatwootConversation constructor

ChatwootConversation({
  1. required int id,
  2. required int inboxId,
  3. required List<ChatwootMessage> messages,
  4. required ChatwootContact contact,
})

Implementation

ChatwootConversation(
    {required this.id,
    required this.inboxId,
    required this.messages,
    required this.contact});