exists method Null safety
- 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));
}
You can check whether a room exists using the exists
Future<dynamic> exists(int roomId) async {
var payload = {"request": "exists", "room": roomId};
return (await this.send(data: payload));
}