ParticipantListItemOptions constructor
ParticipantListItemOptions({ - required Participant participant,
- required bool isBroadcast,
- required MuteParticipantsType onMuteParticipants,
- required MessageParticipantsType onMessageParticipants,
- required RemoveParticipantsType onRemoveParticipants,
- Socket? socket,
- required List<CoHostResponsibility> coHostResponsibility,
- required String member,
- required String islevel,
- ShowAlert? showAlert,
- required String coHost,
- required String roomName,
- required void updateIsMessagesModalVisible(
- bool
),
- required void updateDirectMessageDetails(
- Participant?
),
- required void updateStartDirectMessage(
- bool
),
- required List<Participant> participants,
- required void updateParticipants(
- List<Participant>
),
})
Implementation
ParticipantListItemOptions({
required this.participant,
required this.isBroadcast,
required this.onMuteParticipants,
required this.onMessageParticipants,
required this.onRemoveParticipants,
this.socket,
required this.coHostResponsibility,
required this.member,
required this.islevel,
this.showAlert,
required this.coHost,
required this.roomName,
required this.updateIsMessagesModalVisible,
required this.updateDirectMessageDetails,
required this.updateStartDirectMessage,
required this.participants,
required this.updateParticipants,
});