copyWith method
UpdateNewCallbackQuery
copyWith({
- int? id,
- int? senderUserId,
- int? chatId,
- int? messageId,
- int? chatInstance,
- CallbackQueryPayload? payload,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateNewCallbackQuery copyWith({
int? id,
int? senderUserId,
int? chatId,
int? messageId,
int? chatInstance,
CallbackQueryPayload? payload,
dynamic extra,
int? clientId,
}) =>
UpdateNewCallbackQuery(
id: id ?? this.id,
senderUserId: senderUserId ?? this.senderUserId,
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
chatInstance: chatInstance ?? this.chatInstance,
payload: payload ?? this.payload,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);