let say a function
func BuildRequest(string,string,string)
all three parameters are optional
`request, err := BuildRequest("","{}","")` --> incorrect
like in JS, Java, Python we have null, None but in golang nil
is not from string family.
How can I solve this?