copyWith method

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

Implementation

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