emitSignal method

Future<void> emitSignal(
  1. String interface,
  2. String name, [
  3. Iterable<DBusValue> values = const []
])

Emits a signal on this object.

Implementation

Future<void> emitSignal(String interface, String name,
    [Iterable<DBusValue> values = const []]) async {
  await client?.emitSignal(
      path: path, interface: interface, name: name, values: values);
}