copyWith method

Implementation

WebApiModulesInventoryInventoryCopyPendingModificationsToOtherWarehousesRequest
copyWith({String? fromWarehouseId, String? toWarehouseIds}) {
  return WebApiModulesInventoryInventoryCopyPendingModificationsToOtherWarehousesRequest(
    fromWarehouseId: fromWarehouseId ?? this.fromWarehouseId,
    toWarehouseIds: toWarehouseIds ?? this.toWarehouseIds,
  );
}