MessageCopyOptions constructor
      const
      MessageCopyOptions({ 
    
- required bool sendCopy,
- required bool replaceCaption,
- FormattedText? newCaption,
Options to be used when a message content is copied without reference to the original sender. Service messages and messageInvoice can't be copied
Implementation
const MessageCopyOptions({
  required this.sendCopy,
  required this.replaceCaption,
  this.newCaption,
});