copyWith method
Implementation
AnswerCallbackQuery copyWith({
int? callbackQueryId,
String? text,
bool? showAlert,
String? url,
int? cacheTime,
}) => AnswerCallbackQuery(
callbackQueryId: callbackQueryId ?? this.callbackQueryId,
text: text ?? this.text,
showAlert: showAlert ?? this.showAlert,
url: url ?? this.url,
cacheTime: cacheTime ?? this.cacheTime,
);