getAllProperties method
Called when all properties are requested on this object. On success, return DBusGetAllPropertiesResponse
.
Implementation
@override
Future<DBusMethodResponse> getAllProperties(String interface) async {
return DBusGetAllPropertiesResponse(interface == _batteryInterfaceName
? _getProperties()
: <String, DBusValue>{});
}