copyWith method

EditMessageReplyMarkup copyWith({
  1. int? chatId,
  2. int? messageId,
  3. ReplyMarkup? replyMarkup,
})

Implementation

EditMessageReplyMarkup copyWith({
  int? chatId,
  int? messageId,
  ReplyMarkup? replyMarkup,
}) => EditMessageReplyMarkup(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  replyMarkup: replyMarkup ?? this.replyMarkup,
);