AddRecentlyFoundChat constructor

const AddRecentlyFoundChat({
  1. required int chatId,
})

Adds a chat to the list of recently found chats. The chat is added to the beginning of the list. If the chat is already in the list, it will be removed from the list first

Implementation

const AddRecentlyFoundChat({
  required this.chatId,
});