copyWith method

WebApiModulesSettingsPresentationLayerActivitySortActivitiesRequest copyWith({
  1. int? startAtIndex,
  2. List<String>? presentationLayerActivityIds,
})

Implementation

WebApiModulesSettingsPresentationLayerActivitySortActivitiesRequest copyWith(
    {int? startAtIndex, List<String>? presentationLayerActivityIds}) {
  return WebApiModulesSettingsPresentationLayerActivitySortActivitiesRequest(
      startAtIndex: startAtIndex ?? this.startAtIndex,
      presentationLayerActivityIds:
          presentationLayerActivityIds ?? this.presentationLayerActivityIds);
}