ParserError

I have received an ParserError: Expected primary expression and I am not sure how to fix it. I am babydoge.sol and imported OpenZeppelin/openzeppelin-contracts-upgradeable/blob/master/contracts/proxy/utils/Initializable.sol. The error is on line "if (!deductTransferFee) {" .

functionReflectionFromToken(unit256 ,tAmount,bool ,deductTransferFee
,publicView ,(uint256)
,require(tAmount <= _tTotal, "Amount must be less than supply"),
if (!deductTransferFee) {
(uint256 rAmount,,,,) = _getValues(tAmount);
return rAmount;
} else {
(,uint256 rTransferAmount,,,) = _getValues(tAmount);
return rTransferAmount;
}