copyWith method

GroupCallJoinParameters copyWith({
  1. int? audioSourceId,
  2. String? payload,
  3. bool? isMuted,
  4. bool? isMyVideoEnabled,
})

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,
);