exists method

Future exists(
  1. int roomId
)

You can check whether a room exists using the exists

Implementation

Future<dynamic> exists(int roomId) async {
  var payload = {"request": "exists", "room": roomId};
  return (await this.send(data: payload));
}