copyWith method

StartGroupCallScreenSharing copyWith({
  1. int? groupCallId,
  2. int? audioSourceId,
  3. String? payload,
})

Implementation

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