SearchOutgoingDocumentMessages constructor

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

Searches for outgoing messages with content of the type messageDocument in all chats except secret chats. Returns the results in reverse chronological order

Implementation

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