copyWith method

DeleteChatReplyMarkup copyWith({
  1. int? chatId,
  2. int? messageId,
})

Implementation

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