copyWith method

Implementation

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