copyWith method

StartGroupCallRecording copyWith({
  1. int? groupCallId,
  2. String? title,
  3. bool? recordVideo,
  4. bool? usePortraitOrientation,
})

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