copyWith method

WebApiModulesAgentOrderItemSortOrderItemsRequest copyWith({
  1. int? startAtIndex,
  2. List<String>? orderItemIds,
  3. String? sortStartDateTime,
})

Implementation

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