copyWith method

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

Implementation

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