ForwardMessages constructor

ForwardMessages({
  1. required int chatId,
  2. MessageTopic? topicId,
  3. required int fromChatId,
  4. required List<int> messageIds,
  5. MessageSendOptions? options,
  6. required bool sendCopy,
  7. required bool removeCaption,
})

Implementation

ForwardMessages({
  required this.chatId,
  this.topicId,
  required this.fromChatId,
  required this.messageIds,
  this.options,
  required this.sendCopy,
  required this.removeCaption,
});