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