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