answerCallbackQuery method

Future<bool> answerCallbackQuery(
  1. String callbackQueryId, {
  2. String? text,
  3. bool? showAlert,
  4. String? url,
  5. int? cacheTime,
})
inherited

Use this method to send answers to callback queries sent from inline keyboards.

The answer will be displayed to the user as a notification at the top of the chat screen or as an alert.

On success, True is returned.

Implementation

Future<bool> answerCallbackQuery(
  String callbackQueryId, {
  String? text,
  bool? showAlert,
  String? url,
  int? cacheTime,
}) {
  return _client.apiCall(_token, 'answerCallbackQuery', {
    'callback_query_id': callbackQueryId,
    'text': text,
    'show_alert': showAlert,
    'url': url,
    'cache_time': cacheTime,
  });
}