无法从ajax请求获取Golang中的post参数

On the client side I have code:

    let response = await fetch('/getInfo', {
      credentials: 'same-origin',
      method: 'POST',
      body: JSON.stringify({filename: "file.jpg"})
    });

Code on the server side:

    fmt.Println(c.PostForm("filename")) // empty

Why is it empty? How to get value of c.PostForm("filename")?

This code decodes JSON object from request body:

// Request is structure to encode request body
type Request struct {
    FileName string `json:"filename"`
}

// ServeHTTP is request handler
func (h handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    decoder := json.NewDecoder(r.Body)
    var req Request
    err := decoder.Decode(&req)
    if err != nil {
        // handle error
        return
    }
    // process request
}