listActivatableNames method

Future<List<String>> listActivatableNames()

Returns a list of names that activate services.

Implementation

Future<List<String>> listActivatableNames() async {
  var result = await callMethod(
      destination: 'org.freedesktop.DBus',
      path: DBusObjectPath('/org/freedesktop/DBus'),
      interface: 'org.freedesktop.DBus',
      name: 'ListActivatableNames',
      replySignature: DBusSignature('as'));
  return result.returnValues[0].asStringArray().toList();
}