post method

Route post(
  1. String url
)

Initialize a POST route

Implementation

Route post(String url) {
  return addRoute(Request.post, url);
}