copyWithWrapped method
Implementation
WebApiModulesSettingsPresentationLayerActivitySortActivitiesRequest
copyWithWrapped({
Wrapped<int?>? startAtIndex,
Wrapped<List<String>?>? presentationLayerActivityIds,
}) {
return WebApiModulesSettingsPresentationLayerActivitySortActivitiesRequest(
startAtIndex: (startAtIndex != null
? startAtIndex.value
: this.startAtIndex),
presentationLayerActivityIds: (presentationLayerActivityIds != null
? presentationLayerActivityIds.value
: this.presentationLayerActivityIds),
);
}