LocalStorage constructor

LocalStorage({
  1. required ChatwootUserDao userDao,
  2. required ChatwootConversationDao conversationDao,
  3. required ChatwootContactDao contactDao,
  4. required ChatwootMessagesDao messagesDao,
})

Implementation

LocalStorage({
  required this.userDao,
  required this.conversationDao,
  required this.contactDao,
  required this.messagesDao,
});