callIntrospect method
Invokes org.freedesktop.DBus.Introspectable.Introspect()
Implementation
Future<String> callIntrospect() async {
var result = await callMethod(
'org.freedesktop.DBus.Introspectable', 'Introspect', []);
if (result.signature != DBusSignature('s')) {
throw 'org.freedesktop.DBus.Introspectable.Introspect returned invalid values \${result.values}';
}
return (result.returnValues[0] as DBusString).value;
}