put method

Route put(
  1. String url
)

Initialize a PUT route

Implementation

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