callSetHostName method
Invokes org.freedesktop.Avahi.Server2.SetHostName()
Implementation
Future<void> callSetHostName(String name,
{bool noAutoStart = false,
bool allowInteractiveAuthorization = false}) async {
await callMethod(
'org.freedesktop.Avahi.Server2', 'SetHostName', [DBusString(name)],
replySignature: DBusSignature(''),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization);
}