Method

Contains a string corresponding to the HTTP method of the request: GET, POST, PUT and so on.
Optionally, you could override the method by passing a string.

  1. c.Method(override ...string) string
  1. app.Post("/", func(c *fiber.Ctx) {
  2. c.Method() // "POST"
  3. })