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