Hello Magento friends today's i'm share with you to How to set default shipping method in Magento 2
try this bellow code to set default shipping method in Magento
$quote = $this->getOnepage()->getQuote();
$country = "FR";
$address = $quote->getShippingAddress();
$address->setCountryId($country)->setCollectShippingRates(true)->collectShippingRates();
$quote->setShippingMethod('freeshipping')->save();