copyWith method

SetGroupCallParticipantVolumeLevel copyWith({
  1. int? groupCallId,
  2. MessageSender? participantId,
  3. int? volumeLevel,
})

Implementation

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