GetChats constructor

const GetChats({
  1. ChatList? chatList,
  2. required int limit,
})

Returns an ordered list of chats from the beginning of a chat list. For informational purposes only. Use loadChats and updates processing instead to maintain chat lists in a consistent state

Implementation

const GetChats({
  this.chatList,
  required this.limit,
});