copyWith method

ToggleGroupCallScreenSharingIsPaused copyWith({
  1. int? groupCallId,
  2. bool? isPaused,
})

Implementation

ToggleGroupCallScreenSharingIsPaused copyWith({
  int? groupCallId,
  bool? isPaused,
}) =>
    ToggleGroupCallScreenSharingIsPaused(
      groupCallId: groupCallId ?? this.groupCallId,
      isPaused: isPaused ?? this.isPaused,
    );