copyWith method
Implementation
MessageCopyOptions copyWith({
bool? sendCopy,
bool? replaceCaption,
FormattedText? newCaption,
}) =>
MessageCopyOptions(
sendCopy: sendCopy ?? this.sendCopy,
replaceCaption: replaceCaption ?? this.replaceCaption,
newCaption: newCaption ?? this.newCaption,
);