patch method

Route patch(
  1. String url
)

Initialize a PATCH route

Implementation

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