I have to update and checked checkbox for use default field for product status. But I do not know how to update and checked that checkbox ?

here is my code
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$productId = 1;
$status = 1;
$store = 1;
$product = $objectManager->create('MagentoCatalogModelProduct')->load($productId);
try {
$product->setStoreId($store);
$product->setStatus($status);
$product->save();
} catch (Exception $e) {
echo "Error Id : " . $productId;
}