callUnregister method
Invokes org.unifiedpush.Distributor2.Unregister()
Implementation
Future<Map<String, DBusValue>> callUnregister(
Map<String, DBusValue> args, {
bool noAutoStart = false,
bool allowInteractiveAuthorization = false,
}) async {
var result = await callMethod(
'org.unifiedpush.Distributor2',
'Unregister',
[DBusDict.stringVariant(args)],
replySignature: DBusSignature('a{sv}'),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization,
);
return result.returnValues[0].asStringVariantDict();
}