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