This is because thr setShippingRate
method has not been called yet:
How to fix:
Locate the line:
Replace it with the new one:
return !$this->shippingRate ? null : $this->priceCurrency->convertAndFormat($this->shippingRate->getPrice());
This is because thr setShippingRate
method has not been called yet:
Locate the line:
Replace it with the new one:
return !$this->shippingRate ? null : $this->priceCurrency->convertAndFormat($this->shippingRate->getPrice());