copyWith method
UpdateNewInlineCallbackQuery
copyWith({
- int? id,
- int? senderUserId,
- String? inlineMessageId,
- int? chatInstance,
- CallbackQueryPayload? payload,
Implementation
UpdateNewInlineCallbackQuery copyWith({
int? id,
int? senderUserId,
String? inlineMessageId,
int? chatInstance,
CallbackQueryPayload? payload,
}) => UpdateNewInlineCallbackQuery(
id: id ?? this.id,
senderUserId: senderUserId ?? this.senderUserId,
inlineMessageId: inlineMessageId ?? this.inlineMessageId,
chatInstance: chatInstance ?? this.chatInstance,
payload: payload ?? this.payload,
);