getServerAddress method

Future<List<DBusValue>> getServerAddress()

Gets org.freedesktop.timesync1.Manager.ServerAddress

Implementation

Future<List<DBusValue>> getServerAddress() async {
  var value = await getProperty(
    'org.freedesktop.timesync1.Manager',
    'ServerAddress',
    signature: DBusSignature('(iay)'),
  );
  return value.asStruct();
}