copyWith method
Implementation
StartGroupCallScreenSharing copyWith({
  int? groupCallId,
  int? audioSourceId,
  String? payload,
}) => StartGroupCallScreenSharing(
  groupCallId: groupCallId ?? this.groupCallId,
  audioSourceId: audioSourceId ?? this.audioSourceId,
  payload: payload ?? this.payload,
);