getWebBrowserSettings method
Get Web Browser Settings.
ID: 56655768.
Implementation
Future<Result<AccountWebBrowserSettingsBase>> getWebBrowserSettings({
required int hash,
}) async {
// Preparing the request.
final request = AccountGetWebBrowserSettings(hash: hash);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<AccountWebBrowserSettingsBase>();
}