getBotBusinessConnection method
Get Bot Business Connection.
ID: 76a86270.
Implementation
Future<Result<UpdatesBase>> getBotBusinessConnection({
required String connectionId,
}) async {
// Preparing the request.
final request = AccountGetBotBusinessConnection(connectionId: connectionId);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<UpdatesBase>();
}