joinRoom abstract method

Future<CompletionHandler> joinRoom({
  1. required String roomID,
  2. required RoomType roomType,
  3. String? password = "",
})

Join room

  • roomID : Room ID
  • roomType : Room type (standard or webinar)
  • password : Room password

Returns: Operation result

Implementation

Future<CompletionHandler> joinRoom({
  required String roomID,
  required RoomType roomType,
  String? password = "",
});