copyWith method
Implementation
EditInlineMessageCaption copyWith({
String? inlineMessageId,
ReplyMarkup? replyMarkup,
FormattedText? caption,
}) => EditInlineMessageCaption(
inlineMessageId: inlineMessageId ?? this.inlineMessageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
caption: caption ?? this.caption,
);