getAccessSettings method
Get Access Settings.
ID: 213853a3.
Implementation
Future<Result<BotsAccessSettingsBase>> getAccessSettings({
required InputUserBase bot,
}) async {
// Preparing the request.
final request = BotsGetAccessSettings(bot: bot);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<BotsAccessSettingsBase>();
}