copyWith method

UpdateChatReplyMarkup copyWith({
  1. int? chatId,
  2. Message? replyMarkupMessage,
})

Implementation

UpdateChatReplyMarkup copyWith({int? chatId, Message? replyMarkupMessage}) =>
    UpdateChatReplyMarkup(
      chatId: chatId ?? this.chatId,
      replyMarkupMessage: replyMarkupMessage ?? this.replyMarkupMessage,
    );