copyWith method

SetGroupCallParticipantIsSpeaking copyWith({
  1. int? groupCallId,
  2. int? audioSource,
  3. bool? isSpeaking,
})

Implementation

SetGroupCallParticipantIsSpeaking copyWith({
  int? groupCallId,
  int? audioSource,
  bool? isSpeaking,
}) => SetGroupCallParticipantIsSpeaking(
  groupCallId: groupCallId ?? this.groupCallId,
  audioSource: audioSource ?? this.audioSource,
  isSpeaking: isSpeaking ?? this.isSpeaking,
);