SearchRecentlyFoundChats constructor

const SearchRecentlyFoundChats({
  1. required String query,
  2. required int limit,
})

Searches for the specified query in the title and username of up to 50 recently found chats; this is an offline request

Implementation

const SearchRecentlyFoundChats({
  required this.query,
  required this.limit,
});