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