copyWith method
ToggleGroupCallParticipantIsMuted
copyWith({
- int? groupCallId,
- MessageSender? participantId,
- bool? isMuted,
Implementation
ToggleGroupCallParticipantIsMuted copyWith({
int? groupCallId,
MessageSender? participantId,
bool? isMuted,
}) => ToggleGroupCallParticipantIsMuted(
groupCallId: groupCallId ?? this.groupCallId,
participantId: participantId ?? this.participantId,
isMuted: isMuted ?? this.isMuted,
);