copyWith method

GetCallbackQueryMessage copyWith({
  1. int? chatId,
  2. int? messageId,
  3. int? callbackQueryId,
})

Implementation

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