copyWithWrapped method

Implementation

WebApiModulesWarehouseCheckInCheckInRemoveOrderResponse copyWithWrapped({
  Wrapped<int?>? status,
  Wrapped<String?>? message,
  Wrapped<List<WebApiModulesWarehouseCheckInCheckInOrder>?>? orders,
}) {
  return WebApiModulesWarehouseCheckInCheckInRemoveOrderResponse(
    status: (status != null ? status.value : this.status),
    message: (message != null ? message.value : this.message),
    orders: (orders != null ? orders.value : this.orders),
  );
}