PanelistsModalOptions constructor

PanelistsModalOptions({
  1. Color backgroundColor = const Color(0xFF83C0E9),
  2. required bool isPanelistsModalVisible,
  3. required VoidCallback onPanelistsClose,
  4. Socket? socket,
  5. required String roomName,
  6. required String member,
  7. required String islevel,
  8. required List<Participant> participants,
  9. required int itemPageLimit,
  10. ShowAlert? showAlert,
  11. required List<Participant> panelists,
  12. bool panelistsFocused = false,
  13. bool muteOthersMic = false,
  14. bool muteOthersCamera = false,
  15. void updatePanelists(
    1. List<Participant>
    )?,
  16. void updatePanelistsFocused(
    1. bool
    )?,
  17. void updateMuteOthersMic(
    1. bool
    )?,
  18. void updateMuteOthersCamera(
    1. bool
    )?,
  19. String? position,
})

Implementation

PanelistsModalOptions({
  this.backgroundColor = const Color(0xFF83C0E9),
  required this.isPanelistsModalVisible,
  required this.onPanelistsClose,
  this.socket,
  required this.roomName,
  required this.member,
  required this.islevel,
  required this.participants,
  required this.itemPageLimit,
  this.showAlert,
  required this.panelists,
  this.panelistsFocused = false,
  this.muteOthersMic = false,
  this.muteOthersCamera = false,
  this.updatePanelists,
  this.updatePanelistsFocused,
  this.updateMuteOthersMic,
  this.updateMuteOthersCamera,
  this.position,
});