dbus_client 0.0.0-dev.9 dbus_client: ^0.0.0-dev.9 copied to clipboard
A native Dart implementation of the D-Bus message bus client. This package allows Dart applications to directly access services on the Linux desktop.
import 'package:dbus_client/dbus_client.dart';
import 'dart:collection';
main() async {
var client = DBusClient.session();
await client.connect();
var proxy = DBusObjectProxy(client, 'org.freedesktop.Notifications',
'/org/freedesktop/Notifications');
var values = [
new DBusString(''), // App name
new DBusUint32(0), // Replaces
new DBusString(''), // Icon
new DBusString('Hello World!'), // Summary
new DBusString(''), // Body
new DBusArray(new DBusSignature('s'), []), // Actions
new DBusDict(new DBusSignature('s'), new DBusSignature('v'),
LinkedHashMap<DBusValue, DBusValue>()), // Hints
new DBusInt32(-1), // Expire timeout
];
var result =
await proxy.callMethod('org.freedesktop.Notifications', 'Notify', values);
var id = (result[0] as DBusUint32).value;
print('notify ${id}');
await client.disconnect();
}