copyWith method
Implementation
CallbackQueryAnswer copyWith({
String? text,
bool? showAlert,
String? url,
dynamic extra,
int? clientId,
}) =>
CallbackQueryAnswer(
text: text ?? this.text,
showAlert: showAlert ?? this.showAlert,
url: url ?? this.url,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);