copyWith method

EditBusinessMessageCaption copyWith({
  1. String? businessConnectionId,
  2. int? chatId,
  3. int? messageId,
  4. ReplyMarkup? replyMarkup,
  5. FormattedText? caption,
  6. 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,
);