deleteRoomKeysByRoomId method
Delete the keys from the backup for a given room.
roomId
The ID of the room that the specified key is for.
version
The backup from which to delete the key.
Implementation
Future<RoomKeysUpdateResponse> deleteRoomKeysByRoomId(
String roomId, String version) async {
final requestUri = Uri(
path: '_api/client/v3/room_keys/keys/${Uri.encodeComponent(roomId)}',
queryParameters: {
'version': version,
});
final request = Request('DELETE', baseUri!.resolveUri(requestUri));
request.headers['authorization'] = 'Bearer ${bearerToken!}';
final response = await httpClient.send(request);
final responseBody = await response.stream.toBytes();
if (response.statusCode != 200) unexpectedResponse(response, responseBody);
final responseString = utf8.decode(responseBody);
final json = jsonDecode(responseString);
return RoomKeysUpdateResponse.fromJson(json as Map<String, Object?>);
}