options method

Future<void> options(
  1. HttpHandler handler
)

An OPTIONS request handler for this route.

Implementation

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