copyWith method

Implementation

WebApiModulesWarehouseCheckInCheckInRemoveOrderRequest copyWith(
    {String? contractId, String? orderId}) {
  return WebApiModulesWarehouseCheckInCheckInRemoveOrderRequest(
      contractId: contractId ?? this.contractId,
      orderId: orderId ?? this.orderId);
}