getRootDistanceMaxUSec method

Future<int> getRootDistanceMaxUSec()

Gets org.freedesktop.timesync1.Manager.RootDistanceMaxUSec

Implementation

Future<int> getRootDistanceMaxUSec() async {
  var value = await getProperty(
    'org.freedesktop.timesync1.Manager',
    'RootDistanceMaxUSec',
    signature: DBusSignature('t'),
  );
  return value.asUint64();
}