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