callSetRuntimeNTPServers method
Invokes org.freedesktop.timesync1.Manager.SetRuntimeNTPServers()
Implementation
Future<void> callSetRuntimeNTPServers(
List<String> runtime_servers, {
bool noAutoStart = false,
bool allowInteractiveAuthorization = false,
}) async {
await callMethod(
'org.freedesktop.timesync1.Manager',
'SetRuntimeNTPServers',
[DBusArray.string(runtime_servers)],
replySignature: DBusSignature(''),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization,
);
}