dbus_client 0.0.0-dev.9 copy "dbus_client: ^0.0.0-dev.9" to clipboard
dbus_client: ^0.0.0-dev.9 copied to clipboard

discontinued
outdated

A native Dart implementation of the D-Bus message bus client. This package allows Dart applications to directly access services on the Linux desktop.

Pub Package

A native Dart client implementation of D-Bus.

Example #

import 'package:dbus_client/dbus_client.dart';

var client = DBusClient.system();
await client.connect();
var proxy = DBusObjectProxy(client, 'org.freedesktop.hostname1', '/org/freedesktop/hostname1');
var result = await proxy.getProperty('org.freedesktop.hostname1', 'Hostname');
var hostname = (result.value as DBusString).value;
print("hostname: ${hostname}");
await client.disconnect();
3
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A native Dart implementation of the D-Bus message bus client. This package allows Dart applications to directly access services on the Linux desktop.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on dbus_client