copyWith method

ChatEventVideoChatParticipantVolumeLevelChanged copyWith({
  1. MessageSender? participantId,
  2. int? volumeLevel,
})

Implementation

ChatEventVideoChatParticipantVolumeLevelChanged copyWith({
  MessageSender? participantId,
  int? volumeLevel,
}) => ChatEventVideoChatParticipantVolumeLevelChanged(
  participantId: participantId ?? this.participantId,
  volumeLevel: volumeLevel ?? this.volumeLevel,
);