callSetRuntimeNTPServers method

Future<void> callSetRuntimeNTPServers(
  1. List<String> runtime_servers, {
  2. bool noAutoStart = false,
  3. bool allowInteractiveAuthorization = false,
})

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,
  );
}