SearchSecretMessages constructor
const
SearchSecretMessages({
- required int chatId,
- required String query,
- required String offset,
- required int limit,
- SearchMessagesFilter? filter,
Searches for messages in secret chats. Returns the results in reverse chronological order. For optimal performance, the number of returned messages is chosen by TDLib
Implementation
const SearchSecretMessages({
required this.chatId,
required this.query,
required this.offset,
required this.limit,
this.filter,
});