RoomOptions constructor

RoomOptions(
  1. {required List<List<BreakoutParticipant>> rooms,
  2. required void handleEditRoom(
    1. int roomIndex
    ),
  3. required void handleDeleteRoom(
    1. int roomIndex
    ),
  4. required void handleRemoveParticipant(
    1. int roomIndex,
    2. BreakoutParticipant participant
    )}
)

Implementation

RoomOptions({
  required this.rooms,
  required this.handleEditRoom,
  required this.handleDeleteRoom,
  required this.handleRemoveParticipant,
});