put method

Future<void> put(
  1. HttpHandler handler
)

A PUT request handler for this route.

Implementation

Future<void> put(HttpHandler handler) async =>
    await _method(handler, [HttpMethod.put]);