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