patch method

void patch(
  1. String path,
  2. Handler handler
)

Register a PATCH route

Implementation

void patch(String path, Handler handler) {
  _routes['PATCH:$path'] = handler;
}