copyWith method
EditBusinessMessageCaption
copyWith({
- String? businessConnectionId,
- int? chatId,
- int? messageId,
- ReplyMarkup? replyMarkup,
- FormattedText? caption,
- bool? showCaptionAboveMedia,
Implementation
EditBusinessMessageCaption copyWith({
String? businessConnectionId,
int? chatId,
int? messageId,
ReplyMarkup? replyMarkup,
FormattedText? caption,
bool? showCaptionAboveMedia,
}) => EditBusinessMessageCaption(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
caption: caption ?? this.caption,
showCaptionAboveMedia: showCaptionAboveMedia ?? this.showCaptionAboveMedia,
);