exists method Null safety

Future exists(
  1. int roomId
)
override

You can check whether a room exists using the exists

Implementation

Future<dynamic> exists(roomId) async {
  var payload = {"textroom": "exists", "room": roomId};
}