forget method

Future<void> forget()

Call the SDN API to forget this room if you already left it.

Implementation

Future<void> forget() async {
  await client.database?.forgetRoom(id);
  await client.forgetRoom(id);
  return;
}