copyWith method
EditBusinessMessageReplyMarkup
copyWith({
- String? businessConnectionId,
- int? chatId,
- int? messageId,
- ReplyMarkup? replyMarkup,
Implementation
EditBusinessMessageReplyMarkup copyWith({
String? businessConnectionId,
int? chatId,
int? messageId,
ReplyMarkup? replyMarkup,
}) => EditBusinessMessageReplyMarkup(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
);