getPopularAppBots method

Future<Result<BotsPopularAppBotsBase>> getPopularAppBots({
  1. required String offset,
  2. required int limit,
})

Get Popular App Bots.

ID: c2510192.

Implementation

Future<Result<BotsPopularAppBotsBase>> getPopularAppBots({
  required String offset,
  required int limit,
}) async {
  // Preparing the request.
  final request = BotsGetPopularAppBots(offset: offset, limit: limit);

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<BotsPopularAppBotsBase>();
}