updateSettings method
Update Settings.
ID: 093fa0bf.
Implementation
Future<Result<Boolean>> updateSettings({
required bool allowInternational,
}) async {
// Preparing the request.
final request = SmsjobsUpdateSettings(
allowInternational: allowInternational,
);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}