forget method
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;
}
Call the SDN API to forget this room if you already left it.
Future<void> forget() async {
await client.database?.forgetRoom(id);
await client.forgetRoom(id);
return;
}