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