copyWith method
Implementation
GroupCallJoinParameters copyWith({
int? audioSourceId,
String? payload,
bool? isMuted,
bool? isMyVideoEnabled,
}) => GroupCallJoinParameters(
audioSourceId: audioSourceId ?? this.audioSourceId,
payload: payload ?? this.payload,
isMuted: isMuted ?? this.isMuted,
isMyVideoEnabled: isMyVideoEnabled ?? this.isMyVideoEnabled,
);