copyWith method
Implementation
@override
UpdateChatReplyMarkup copyWith({
int? chatId,
int? replyMarkupMessageId,
dynamic extra,
int? clientId,
}) =>
UpdateChatReplyMarkup(
chatId: chatId ?? this.chatId,
replyMarkupMessageId: replyMarkupMessageId ?? this.replyMarkupMessageId,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);