patch method

void patch(
  1. String route,
  2. Function handler
)

Handle PATCH request to route using handler.

Implementation

void patch(String route, Function handler) => add('PATCH', route, handler);