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