RoomOptions constructor
- {required List<
List< rooms,BreakoutParticipant> > - required void handleEditRoom(
- int roomIndex
- required void handleDeleteRoom(
- int roomIndex
- required void handleRemoveParticipant(
- int roomIndex,
- BreakoutParticipant participant
Implementation
RoomOptions({
required this.rooms,
required this.handleEditRoom,
required this.handleDeleteRoom,
required this.handleRemoveParticipant,
});