getAllProperties method

  1. @override
Future<DBusMethodResponse> getAllProperties(
  1. String interface
)

Called when all properties are requested on this object. On success, return DBusGetAllPropertiesResponse.

Implementation

@override
Future<DBusMethodResponse> getAllProperties(String interface) async {
  return DBusGetAllPropertiesResponse(interface == _advertInterfaceName
      ? _getProperties()
      : <String, DBusValue>{});
}