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