disablePeerConnectedBot method
Disable Peer Connected Bot.
ID: 5e437ed9.
Implementation
Future<Result<Boolean>> disablePeerConnectedBot({
required InputPeerBase peer,
}) async {
// Preparing the request.
final request = AccountDisablePeerConnectedBot(peer: peer);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}