copyWith method
Implementation
StartGroupCallRecording copyWith({
  int? groupCallId,
  String? title,
  bool? recordVideo,
  bool? usePortraitOrientation,
}) => StartGroupCallRecording(
  groupCallId: groupCallId ?? this.groupCallId,
  title: title ?? this.title,
  recordVideo: recordVideo ?? this.recordVideo,
  usePortraitOrientation: usePortraitOrientation ?? this.usePortraitOrientation,
);