getProperty method

Future<DBusMethodResponse> getProperty(
  1. String interface,
  2. String name
)

Called when a property is requested on this object. On success, return DBusGetPropertyResponse.

Implementation

Future<DBusMethodResponse> getProperty(String interface, String name) async {
  return DBusMethodErrorResponse.unknownProperty();
}