MTRoom constructor

MTRoom({
  1. required String roomId,
  2. required String roomName,
  3. required int emptyTimeOut,
  4. required int maxParticipants,
})

Implementation

MTRoom({
  required this.roomId,
  required this.roomName,
  required this.emptyTimeOut,
  required this.maxParticipants,
});