copyWith method

ChatEventVideoChatParticipantIsMutedToggled copyWith({
  1. MessageSender? participantId,
  2. bool? isMuted,
})

Implementation

ChatEventVideoChatParticipantIsMutedToggled copyWith({
  MessageSender? participantId,
  bool? isMuted,
}) => ChatEventVideoChatParticipantIsMutedToggled(
  participantId: participantId ?? this.participantId,
  isMuted: isMuted ?? this.isMuted,
);