EditMessageCaption constructor

const EditMessageCaption({
  1. required int chatId,
  2. required int messageId,
  3. ReplyMarkup? replyMarkup,
  4. FormattedText? caption,
})

Edits the message content caption. Returns the edited message after the edit is completed on the server side

Implementation

const EditMessageCaption({
  required this.chatId,
  required this.messageId,
  this.replyMarkup,
  this.caption,
});