copyWith method
ChatEventVideoChatParticipantIsMutedToggled
copyWith({
- MessageSender? participantId,
- bool? isMuted,
override
Implementation
@override
ChatEventVideoChatParticipantIsMutedToggled copyWith({
MessageSender? participantId,
bool? isMuted,
}) => ChatEventVideoChatParticipantIsMutedToggled(
participantId: participantId ?? this.participantId,
isMuted: isMuted ?? this.isMuted,
);