copyWith method
Implementation
AddQuickReplyShortcutInlineQueryResultMessage copyWith({
String? shortcutName,
int? replyToMessageId,
int? queryId,
String? resultId,
bool? hideViaBot,
}) => AddQuickReplyShortcutInlineQueryResultMessage(
shortcutName: shortcutName ?? this.shortcutName,
replyToMessageId: replyToMessageId ?? this.replyToMessageId,
queryId: queryId ?? this.queryId,
resultId: resultId ?? this.resultId,
hideViaBot: hideViaBot ?? this.hideViaBot,
);