OpenMessageContent constructor

const OpenMessageContent({
  1. required int chatId,
  2. required int messageId,
})

Informs TDLib that the message content has been opened (e.g., the user has opened a photo, video, document, location or venue, or has listened to an audio file or voice note message).. An updateMessageContentOpened update will be generated if something has changed

Implementation

const OpenMessageContent({
  required this.chatId,
  required this.messageId,
});